Options Flashcards
Memorize the syntax for options that can be combined with various types of commands.
What does the following Git option do?
–version
Prints the git suite version that the git program came from.
What does the following Git option do?
–help
Prints the synopsis and a list of the most commonly used commands. If the option –all or -a is given then all available commands are printed. If a git command is named this option will bring up the manual page for that command.
What does the following Git option do?
-c =
Pass a configuration parameter to the command. The value given will override values from configuration files. The is expected in the same format as listed by git config (subkeys separated by dots).
What does the following Git option do?
–exec-path[=]
Path to wherever your core git programs are installed. This can also be controlled by setting the GIT_EXEC_PATH environment variable. If no path is given, git will print the current setting and then exit.
What does the following Git option do?
–html-path
Print the path, without trailing slash, where git’s HTML documentation is installed and exit.
What does the following Git option do?
–man-path
Print the manpath (see man(1)) for the man pages for this version of git and exit.
What does the following Git option do?
–info-path
Print the path where the Info files documenting this version of git are installed and exit.
What does the following Git option do?
–paginate
Pipe all output into less (or if set, $PAGER) if standard output is a terminal. This overrides the pager. configuration options (see the “Configuration Mechanism” section below).
What does the following Git option do?
–no-pager
Do not pipe git output into a pager.
What does the following Git option do?
–git-dir=
Set the path to the repository. This can also be controlled by setting the GIT_DIR environment variable. It can be an absolute path or relative path to current working directory.
What does the following Git option do?
–work-tree=
Set the path to the working tree. It can be an absolute path or a path relative to the current working directory. This can also be controlled by setting the GIT_WORK_TREE environment variable and the core.worktree configuration variable (see core.worktree in git-config(1) for a more detailed discussion).
What does the following Git option do?
–bare
Treat the repository as a bare repository. If GIT_DIR environment is not set, it is set to the current working directory.
What does the following Git option do?
–no-replace-objects
Do not use replacement refs to replace git objects. See git-replace(1) for more information.
Name the Git option that does the following:
Prints the git suite version that the git program came from.
–version
Name the Git option that does the following:
Prints the synopsis and a list of the most commonly used commands. If the option –all or -a is given then all available commands are printed. If a git command is named this option will bring up the manual page for that command.
–help