Show helpful guides that come with Git
- 1 Min. Read.
You can access the some common git concept guides by typing the following command:
1 |
git help -g |
Running the previous command results in the following output:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
The common Git guides are: attributes Defining attributes per path everyday Everyday Git With 20 Commands Or So glossary A Git glossary ignore Specifies intentionally untracked files to ignore modules Defining submodule properties revisions Specifying revisions and ranges for Git tutorial A tutorial introduction to Git (for version 1.5.1 or newer) workflows An overview of recommended workflows with Git 'git help -a' and 'git help -g' list available subcommands and some concept guides. See 'git help <command>' or 'git help <concept>' to read about a specific subcommand or concept. |