--hard
--hard is defined as: flag to reset to discard all Diff. Topics on: note flag is case insensitive so --HARD is same as --hard. Read more: Dev Tool, Git, Git Com
--hard is defined as: flag to reset to discard all Diff. Topics on: note flag is case insensitive so --HARD is same as --hard. Read more: Dev Tool, Git, Git Com
add is defined as: to add file/dir to Staging. Topics on: git add .. Read more: Dev Tool, Git, Git Command, Add, Staging|FullStack Wiki by Roger J
alias is defined as: to shorten git cmd. Topics on: . Read more: Dev Tool, Git, Git Command, Config, Alias|FullStack Wiki by Roger J
bisect is defined as: to walk through Commit History via Binary Search to find good/bad Commit. Topics on: git bisect start, git bisect good, git bisect bad, Wh
branch is defined as: to create new Branch. Topics on: git branch, git branch -M main, git branch -d _name, git branch -D _name, -d, -D, HEAD. Read more: Dev To
checkout is defined as: to move onto Branch. Topics on: checkout -b _name, checkout -. Read more: Dev Tool, Git, Git Command, Branch|FullStack Wiki by Roger J
clone is defined as: to download copy of remote Git Repo/Diff to local repo. Topics on: git clone _URL newName. Read more: Dev Tool, Git, Git Command, Clone, Gi
commit is defined as: to create new Commit with Diff added in Staging. Topics on: git commit -m 'init', git commit -am '_change', -m, --amend, git commit --amen
config is defined as: to create alias. Topics on: alias, git config --global alias.ac 'commit -am', git config --system core.longpaths true. Read more: Dev Tool
fetch is defined as: to download Diff in remote Git Repo. Topics on: . Read more: Dev Tool, Git, Git Command, Fetch, Diff, Remote, Git Repo|FullStack Wiki by RJ
git add . is defined as: to add all files in Working Dir to Staging. Topics on: . Read more: Dev Tool, Git, Git Command, Add, Working Dir, Staging |web-Dev Wiki
git clone _URL newName is defined as: to clone remote Git Repo (at _URL) to local machine & rename to newName. Topics on: . Read more: Dev Tool, Git, Git Comman
git command is defined as: . Topics on: add, bisect, branch, checkout, clean, clone, commit, config, diff, fetch, git-filter-branch, init, log, merge, pull, pus
git remote is defined as: to print list of all remote connected Git Repo. Topics on: . Read more: Dev Tool, Git, Git Command, Remote, Git Repo | Full-Stack Wiki
git reset _SHA is defined as: to reset to previous Commit with _SHA UID in Mixed Mode. Topics on: Mixed Mode. Read more: Dev Tool, Git, Git Command, Reset, Git
git-filter-branch. Topics on: . Read more: Dev Tool, Git, Git Command, Git Filter Branch|FullStack Wiki by Roger J
log is defined as: to print Commit History with SHA UID, timestamp & msg name. Topics on: --oneline, git log --graph --oneline --decorate. Read more: Dev Tool,
merge is defined as: to Merge Branch. Topics on: --abort, git merge --abort. Read more: Dev Tool, Git, Git Command, Merge, Branch|FullStack Wiki by Roger J
Mixed Mode is defined as: (default) behavior to move to prev Commit but NOT del files. Topics on: . Read more: Dev Tool, Git, Git Command, Reset, Git Reset SHA,
pick is defined as: (default) to keep Commit. Topics on: . Read more: Dev Tool, Git, Git Command, Rebase, Commit|FullStack Wiki by Roger J
pull is defined as: fetch + merge combo to sync remote. Topics on: git pull origin master, must have Clean Working Dir to allow pull. Read more: Dev Tool, Git,
push is defined as: to sync local Git Repo to remote. Topics on: git push origin master -u, -U, --force, git push --force origin __branch, git push --force-with
rebase is defined as: to rewrite Commit History to simplify/linearize Merge. Topics on: git rebase master, git rebase master --interactive, pick, squash, fixup,
reflog is defined as: . Topics on: . Read more: Dev Tool, Git, Git Command|FullStack Wiki by Roger J
remote is defined as: to link local Git Repo to remote Git Repo. Topics on: git remote, git remote add origin _URL, git remote -v, git remote show, origin, git
reset is defined as: to remove files from Staging (no modify/delete). Topics on: git reset _SHA, --hard, git reset HEAD~, git reset --soft HEAD~1, git reset --s
revert is defined as: to safely undo bad Commit via new Commit & keep Commit History. Topics on: . Read more: Dev Tool, Git, Git Command, Commit, Commit History
rm is defined as: to del .git. Topics on: git rm -rf .git. Read more: Dev Tool, Git, Git Command|FullStack Wiki by Roger J
squash is defined as: to combine multi Commit into single name Commit. Topics on: . Read more: Dev Tool, Git, Git Command, Rebase, Commit | FullStack Wiki by RJ
stash is defined as: to save Diff w/o Commit, to array list. Topics on: git stash, git stash pop, git stash save _name, git stash list, git stash apply 1, stash