How to learn about a git command |All git Command |
To get more information about any git command – i.e. details about what the command does, available options and other documentation – use the --help option or the help command.
For example, to get all available information about the git diff command, use:
git diff --help
git help diff
Similarly, to get all available information about the status command, use:
git status --help
git help status
If you only want a quick help showing you the meaning of the most used command line flags, use -h:
git checkout -h
1. How to install git in your PC. Git Installation step by step easy explation.
2. How to create your first repository, then add and commit files in git step by step.
3. How to Clone a repository in git.
4. How to Share a code trough git.
5. How to Setting your user name and email in git.
6. How to Setting up the upstream remote in git.
7. How to Learn about a command in git.
0 Comments