🌱 Git commands
Push all branches to remote
git push REMOTE '*:*'
git push REMOTE --all
Split a commit
https://git-scm.com/book/en/v2/Git-Tools-Rewriting-History#Splitting-a-Commit
git rebase -i
- add
edit
next to line you want to split - save and close file
- add files and commit like normal
- when you are done
git rebase --continue