git tag -a v1.4 -m "my version 1.4” - create a tag (annotated tag) ➤ git show v1.4 - show a tag ➤ git push origin -- tags - push with tags ➤ https://git-scm.com/book/en/v2/Git-Basics-Tagging
a submodule ➤ Now look into .gitmodules ➤ git clone --recursive https://github.com/chaconinc/ MainProject - Clone a project with submodules ➤ https://git-scm.com/book/en/v2/Git-Tools-Submodules
?w=1 to view diffs without whitespace ➤ Use t to open a file on github web ➤ Commit history by author: https://github.com/rails/rails/ commits/master?author=dhh ➤ Comparing is powerful: https://github.com/rails/rails/ compare/master@{1.day.ago}...master ➤ y - freeze page when looking at a file ➤ Highlight lines https://github.com/rails/rails/blob/master/activemodel/ lib/active_model.rb#L53-L60 ➤ … there’s plenty of more…