this post was submitted on 03 Mar 2024
1082 points (97.8% liked)
Programmer Humor
19480 readers
603 users here now
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Aye, most of my 10 year career in web dev is pretty much those commands. However, some advanced git concepts are worth diving into. Stuff like
git bisect
that can narrow down the exact commit that broke your app is an absolute life saver. Knowing how togit cherry-pick
is also a git skill professionals should be comfortable doing. Migrating work from one branch to another without merging the entire branch is pretty common.