Branch
↔ alt version for file/code
aka Branches
Master
main Branch
References
Conflict
↔ when 2 Commits to Merge overwrite same file, git unsure which Branch to keepgit remote show
↔ to print details for remote Git Repo incl Branchgit branch
↔ to print list of Branches in project-d
↔ flag to safely delete Branch only if not already Merged into Master-D
↔ flag to force delete Branch ignore if Merged into Mastergit branch -D _name
↔ to force delete Branch of_name
git branch -d _name
↔ to safely delete Branch of_name
checkout -b _name
↔ to create new Branch of_name
& check into it from Mastercheckout -
↔ tocheckout
prev Branchgit rebase master
↔ to combine Branch into Master by modifying Mastergit log --graph --oneline --decorate
↔ to print Commit History as colorized ASCII graph (only applies to Repo with Branches )git rebase master --interactive
↔ to controlrebase
Master Branch via interactive doc editor topick
&squash
Commitsgit push -u origin master
↔ topush
local Git Repo Branch at Master toremote
Repo