How to reset, revert, and return to previous states in Git

https://opensource.com/article/18/6/git-reset-revert-rebase-commands

How to use VS Code as your Git editor, difftool, and mergetool

https://www.roboleary.net/vscode/2020/09/15/vscode-git.html

Git –assume-unchanged

To ignore watching/tracking a particular directory/file:

git update-index --assume-unchanged <file>


To undo it and start watching the file again:

git update-index --no-assume-unchanged <file>

Git: Push to / Pull from Both Github and Bitbucket

https://blog.kevinlee.io/blog/2013/03/11/git-push-to-pull-from-both-github-and-bitbucket/

Send A Patch To Someone Using `git format-patch`

https://thoughtbot.com/blog/send-a-patch-to-someone-using-git-format-patch