High-Level (Porcelain) Commands Flashcards
Memorize high-level Git commands so you'll never have to look them up again. (150 cards)
What does the following Git command do?
git-add(1)
Add file contents to the index.
What does the following Git command do?
git-am(1)
Apply a series of patches from a mailbox.
What does the following Git command do?
git-archive(1)
Create an archive of files from a named tree.
What does the following Git command do?
git-bisect(1)
Find by binary search the change that introduced a bug.
What does the following Git command do?
git-branch(1)
List, create, or delete branches.
What does the following Git command do?
git-bundle(1)
Move objects and refs by archive.
What does the following Git command do?
git-checkout(1)
Checkout a branch or paths to the working tree.
What does the following Git command do?
git-cherry-pick(1)
Apply the changes introduced by some existing commits.
What does the following Git command do?
git-citool(1)
Graphical alternative to git-commit.
What does the following Git command do?
git-clean(1)
Remove untracked files from the working tree.
What does the following Git command do?
git-clone(1)
Clone a repository into a new directory.
What does the following Git command do?
git-commit(1)
Record changes to the repository.
What does the following Git command do?
git-describe(1)
Show the most recent tag that is reachable from a commit.
What does the following Git command do?
git-diff(1)
Show changes between commits, commit and working tree, etc.
What does the following Git command do?
git-fetch(1)
Download objects and refs from another repository.
What does the following Git command do?
git-format-patch(1)
Prepare patches for e-mail submission.
What does the following Git command do?
git-gc(1)
Cleanup unnecessary files and optimize the local repository.
What does the following Git command do?
git-grep(1)
Print lines matching a pattern.
What does the following Git command do?
git-gui(1)
A portable graphical interface to Git.
What does the following Git command do?
git-init(1)
Create an empty git repository or reinitialize an existing one.
Name the Git command that does the following:
Add file contents to the index.
git-add(1)
Name the Git command that does the following:
Apply a series of patches from a mailbox.
git-am(1)
Name the Git command that does the following:
Create an archive of files from a named tree.
git-archive(1)
Name the Git command that does the following:
Find by binary search the change that introduced a bug.
git-bisect(1)