Skip to main content

30 docs tagged with "Git Command"

View All Tags

--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

add

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

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

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

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

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

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

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

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

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 .

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

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

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

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

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

git-filter-branch. Topics on: . Read more: Dev Tool, Git, Git Command, Git Filter Branch|FullStack Wiki by Roger J

log

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

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

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

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

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

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

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

reflog is defined as: . Topics on: . Read more: Dev Tool, Git, Git Command|FullStack Wiki by Roger J

remote

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

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

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

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

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

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