Create a new .gitignore file fetched from the GitHub repo for a "node" js app
npx gitignore node
Creating a SSH Public Key on OSX
ssh-keygen -t rsa -b 4096
Copy public SSH key and add it to the GitHub
pbcopy < ~/.ssh/id_rsa.pub
UseKeychain: do not re-enter password while commiting/clonning
Add following to the ~/.ssh/config
Host *
AddKeysToAgent yes
UseKeychain yes
Add private key to keychain
ssh-add --apple-use-keychain ~/.ssh/<private_key>
Make sure AddKeysToAgent is set to yes in ~/.ssh/config for this to work
How to resolve conflicts in yarn.lock
git rebase origin/master
When the first conflict arises, I checkout the yarn.lock then re-perform the installation
git checkout origin/master -- yarn.lock
yarn
This generates a new yarn.lock based on the origin/master version of yarn.lock, but including the changes I made to my package.json. Then it's just a matter of:
git add yarn.lock
git rebase --continue
Release
Create a release tag
git tag <tagname>
Push all tags
git push origin --tags
Push a single tag
git push origin <tag>
List all tags
git tag
Clone
Clean up
clean unreachable object (sometimes speeds up .git)
git prune --dry-run
clean outdated branches
git fetch --prune
Advanced git
git-reflog - Manage reflog information
git-bisect - Use binary search to find the commit that introduced a bug