Git Repo ↔ collection of Commits for project Diff history
aka Repo, Repos
References
status↔ to show state of Git Repo; list files in Staging/untracked/Commit Historygit remote↔ to print list of all remote connected Git Repogit remote add origin _URL↔ to addremoteGit Repo w name oforiginat_URLgit remote -v↔ to printremoteGit Repo name & URLgit remote show↔ to print details for remote Git Repo incl Branchgit pull origin master↔ to downloadremoteGit Repo namedorigin&mergewith local repo namedmastergit clone _URL newName↔ tocloneremoteRepo (at_URL) to local machine & rename tonewNamegithub codespace↔ (feat)(paywall) to open github Repo in online cloud IDE playgroundclone↔ to download copy of remote Git Repo/Diff to local repo--force↔ flag to overwrite Commit History onremoteRepogit log --graph --oneline --decorate↔ to print Commit History as colorized ASCII graph (only applies to Repo with Branches )Docker Hub↔ Docker Image Repo, CI/CD triggers/Webhook, github integrationdegit↔ Dev tool to clone Git Repo, auto find latest commit, download ass.tar- essentially alias forgit clone --depth 1 _SOMEGITREPOURLgit remote add upstream _URL↔ to sync local Repo w Upstream Github RepoGithub Repo↔remoteRepo host on github.combfg↔ fast alt togit-filter-branchto go 1984 on Git Repo - no filepath support, only discrete filename/foldername - RISKY! outputs changelog to .git.bfg-reportgit push --force origin __branch↔ topushlocal Commit toremoteRepo & FORCE sync to local (discardremotehistory) 🔥 bad for teamwork!git push -u origin master↔ topushlocal Git Repo Branch at Master toremoteRepogit push --force-with-lease origin __branch↔ to push local Commit to remote Repo & SAFELY sync (avoid overwrite remote history) ✅ often mandatory to not get fired!