General Git Snippets
Unsorted
Find Base Folder
git rev-parse --show-toplevel
Branch names
git branch
Delete Branch
locally
git branch -d [branch_name]
remote
git push -d [origin] [branch_name]
Branch info
git show [OPTIONAL: branch_name]
ASCII Tree
git log --graph --oneline
Backup
git bundle create <file_name or file_path>.bundle --all