Everyday Git in twenty commands
- 1 Min. Read.
To get a list of everyday git commands you can use the following command:
1 |
git help everyday |
Troubleshooting
When you’ve installed git from source, you’d probably receive an error like this when running the above command:
The reason you’re getting this error is that the manual is not installed for git. This can be fixed by the following command.
sudo apt-get install git man
or sudo apt-get install git-doc
depending on your operating system.