Submodule update git
Initialize and update all submodules recursively
git submodule update --init --recursive
more git
all 45 commands →
Show file at specific commit
git show <sha>:path/to/file
Log with graph
git log --oneline --graph --decorate --all | head -40
Grep across history
git log -S 'password' --oneline --all
Amend last commit message
git commit --amend --no-edit
Delete remote branch
git push origin --delete feature/old-branch