Git stuff I learned in the past 3 months and saved me from a lot of Git troubles
Wanna come learn some tips on Git?

- Instead of “git add .” + “git commit -m ‘message’”, I can do git commit -am “message here” (This won’t work in new files that are newly created, since you have to make sure they are tracked remotely first by doing git add [<file>])