Browse Source

git: add more subcommand examples (#6763)

Ray Voice 3 years ago
parent
commit
7618fef666
1 changed files with 2 additions and 2 deletions
  1. 2 2
      pages/common/git.md

+ 2 - 2
pages/common/git.md

@@ -1,7 +1,7 @@
 # git
 
 > Distributed version control system.
-> Some subcommands such as `git commit` have their own usage documentation.
+> Some subcommands such as `commit`, `add`, `branch`, `checkout`, `push`, etc. have their own usage documentation, accessible via `tldr git subcommand`.
 > More information: <https://git-scm.com/>.
 
 - Check the Git version:
@@ -12,7 +12,7 @@
 
 `git --help`
 
-- Show help on a Git subcommand (like `commit`, `log`, etc.):
+- Show help on a Git subcommand (like `clone`, `add`, `push`, `log`, etc.):
 
 `git help {{subcommand}}`