- cross-posted to:
- linux4noobs@programming.dev
- cross-posted to:
- linux4noobs@programming.dev
Rule 5. Locking.
There is always a relevant xkcd!
That’s nice :)))
Git gud
How ?
Basic workflow that got me through the learning pains.
If I just sat down:
git checkout developor whatever ur main branch isgit pull origin
If I’m working on a new branch:
(If not already on the new branch)
git branch -b feature/123-ticket-name
(After making some changes)
git add .git commitgit push
Git will prompt you the first time you git push, just follow the instructions.
And of course there’s tons more you could learn or dive into. But that should give you a stable foundation to start working from
You’d be surprised how many people use git without knowing even the basics.
I’ve had a surpising amount of coworkers who have come to me for an issue that I literally googled for them to just give them the answer.
I’ve tried learning git a few times and new a bit about it but this article helped me understanding it quite a bit better:
https://www.chrismccole.com/blog/git-for-artists
The practical bits are about Github which you obviously don’t want to use but you can still get the gist of it when using Codeberg or something similar.
There are many many many many many git tutorials online. You literally need to stick the question into a search engine or watch a YouTube video.




