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 to git 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.
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.