Git Version Control Practice Exam
Question 1 of 50
git submodule add <url> <path>
.gitmodules
git reflog
git cherry-pick
git pull
git fetch
git merge
.gitignore
*.log
node_modules/
git remote -v
git remote show <name>
--no-ff
git branch <branch-name>
git checkout -b <branch-name>
git add <file>
git add .
git branch -d <branch>
-D
git stash list
git stash apply stash@{n}
git reset <commit>
--soft
--mixed
--hard
git stash
git stash pop
git push <remote> <branch>
git push -u origin <branch>
git add
git remote rename <old> <new>
git stash drop
git stash drop <stash>
stash@{0}
git config --global alias.st status
git st
git tag <name> <commit>
git rebase -i <commit>
git branch
git branch -r
git branch -a
git revert
git remote add <name> <url>
origin
git remote prune <remote>
git revert <commit>
git worktree
git rebase <branch>
git archive --format=zip HEAD
.git
git worktree add <path> <branch>
git bisect
git log
--oneline
--graph
git init --bare
git remote prune
git init
git tag -a
git push --tags
git clone <url>
git commit --amend
git clean
git clean -f
-d
-n
git checkout <branch>
git cherry-pick <commit>
git status
git merge <branch>
git commit -m "message"
git clone
git checkout
.git/hooks/
git archive
git submodule update --init
git fetch --all
git push
git branch --set-upstream-to
git rebase
git commit
git reset
Question navigator