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_namegit branch -d _name↔ to safely delete Branch of_namecheckout -b _name↔ to create new Branch of_name& check into it from Mastercheckout -↔ tocheckoutprev 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 controlrebaseMaster Branch via interactive doc editor topick&squashCommitsgit push -u origin master↔ topushlocal Git Repo Branch at Master toremoteRepo