|
14 | 14 |
|
15 | 15 | ****
|
16 | 16 |
|
17 |
| -Example from Git CLI command: |
| 17 | +How to list available commands and get help: |
18 | 18 |
|
19 |
| - start a working area (see also: git help tutorial) |
20 |
| - clone Clone a repository into a new directory |
21 |
| - init Create an empty Git repository or reinitialize an existing one |
22 |
| -
|
23 |
| - work on the current change (see also: git help everyday) |
24 |
| - add Add file contents to the index |
25 |
| - mv Move or rename a file, a directory, or a symlink |
26 |
| - rm --cached Reset current HEAD to the specified state |
27 |
| - rm Remove files from the working tree and from the index |
28 |
| -
|
29 |
| - examine the history and state (see also: git help revisions) |
30 |
| - bisect Use binary search to find the commit that introduced a bug |
31 |
| - grep Print lines matching a pattern |
32 |
| - log Show commit logs |
33 |
| - show Show various types of objects |
34 |
| - status Show the working tree status |
35 |
| -
|
36 |
| - grow, mark and tweak your common history |
37 |
| - branch List, create, or delete branches |
38 |
| - checkout Switch branches or restore working tree files |
39 |
| - commit Record changes to the repository |
40 |
| - diff Show changes between commits, commit and working tree, etc |
41 |
| - merge Join two or more development histories together |
42 |
| - rebase Forward-port local commits to the updated upstream head |
43 |
| - tag Create, list, delete or verify a tag object signed with GPG |
44 |
| -
|
45 |
| - collaborate (see also: git help workflows) |
46 |
| - fetch Download objects and refs from another repository |
47 |
| - pull Fetch from and integrate with another repository or a local branch |
48 |
| - push Update remote refs along with associated objects |
| 19 | + git --help |
| 20 | + git clone --help |
| 21 | + man git-add |
49 | 22 |
|
50 | 23 | ~~~ENDSECTION~~~
|
0 commit comments