Either the agent doesn't fully understand perforce (who does?) or our setup of perforce is so divergent from "standard" who even knows anymore...

#RevisionControl
#Perforce
#AgenticAI

Version Control for Solo Devs with Git & GitHub—no terminal.
➡️ Enroll Now: https://bit.ly/3KFtxir

#UnrealEngine #GameDev #IndieDev #solodev #udemy #UE5 #git #github #versioncontrol #revisioncontrol #sourcecontrol

Solo Dev Version Control in Unreal Engine with Git & GitHub

The Easiest Way to Use Git & GitHub with Unreal Engine 5. A Visual, No-Terminal Guide for Solo Developer (Windows Only)

Udemy

GitHub CEO: Embrace AI or get out.

https://www.businessinsider.com/github-ceo-developers-embrace-ai-or-get-out-2025-8

PS. Here’s where to go: @Codeberg

https://codeberg.org

(As an additional bonus, you’ll have the peace of mind of knowing you’re part of an anti-fascist not-for-profit cooperative instead of a trillion-dollar US corporation that’s helping Israel commit genocide.)

#git #sourceControl #revisionControl #GitHub #Codeberg #dev #AI #BigTech #Microsoft #israel #genocide #ethnicCleansing #apartheid #settlerColonialism #Palestine #StopIsrael #StopArmingIsrael #StopTheGenocide #FreePalestine

GitHub CEO delivers stark message to developers: Embrace AI or get out.

Thomas Dohmke wrote that humans are often resistant to change. He said that's okay, but these people should probably find another profession.

Business Insider

Git revert tango (one step forward, one step back).
My personal record is
Revert ³ <commit message>
("what I tell you three times is true").

I note that when Git does
<message> → Revert "<message>"
for the draft commit message, it doesn't escape nested double quotes in the message.
I'm shocked 🙂.

#Git
#GitRevert
#RevisionControl
#VersionControl

Game of Trees 0.112 released

will it work with the bare needed things ? #ndsdev #gamedev #revisioncontrol
If you keep documents in a Git repository for revision control, it is often useful to review the differences between versions. Git has a valuable --word-diff option to show the differences word-by-word rather than line-by-line, as is often preferable when working with document text rather than program code.
Git can also respect the syntax of the file format used in determining word boundaries. See the gitattributes(5) manual page for details, e.g.,
*.tex diff=tex
would process TeX/LaTeX syntax.
It may also be useful to eliminate context lines from the output, e.g., with the -U0 option.
#Git #writing #RevisionControl
Linux Fu: Deep Git Rebasing

If you spend much time helping people with word processor programs, you’ll find that many people don’t really use much of the product. They type, change fonts, save, and print. But cros…

Hackaday
Linux Fu: Deep Git Rebasing

If you spend much time helping people with word processor programs, you’ll find that many people don’t really use much of the product. They type, change fonts, save, and print. But cros…

Hackaday

I am fairly new to using Git with multiple engineers. Can someone tell me, if I do:

git config pull.rebase true

That changes my local git configuration *always*, correct?

In the future if I ever try to git push (we have a server setup that everyone pushes to) and someone else has already pushed one or more commits since I last git pulled, I can then git pull and it will *always* rebase my commits?

#Git
#RevisionControl