Lines Matching +full:- +full:- +full:git
1 Git is an example of several common subcommand patterns.
5 $ git
9 Usage: git[EXE] <COMMAND>
20 -h, --help Print help
22 $ git help
25 Usage: git[EXE] <COMMAND>
36 -h, --help Print help
38 $ git help add
41 Usage: git[EXE] add <PATH>...
47 -h, --help Print help
53 $ git add
57 Usage: git[EXE] add <PATH>...
63 -h, --help Print help
65 $ git add Cargo.toml Cargo.lock
72 $ git stash -h
73 Usage: git[EXE] stash [OPTIONS]
74 git[EXE] stash <COMMAND>
83 -m, --message <MESSAGE>
84 -h, --help Print help
86 $ git stash push -h
87 Usage: git[EXE] stash push [OPTIONS]
90 -m, --message <MESSAGE>
91 -h, --help Print help
93 $ git stash pop -h
94 Usage: git[EXE] stash pop [STASH]
100 -h, --help Print help
102 $ git stash -m "Prototype"
105 $ git stash pop
108 $ git stash push -m "Prototype"
111 $ git stash pop
118 $ git custom-tool arg1 --foo bar
119 Calling out to "custom-tool" with ["arg1", "--foo", "bar"]
125 $ git diff --help
128 Usage: git[EXE] diff [OPTIONS] [COMMIT] [COMMIT] [-- <PATH>]
136 --color[=<WHEN>] [default: auto] [possible values: always, auto, never]
137 -h, --help Print help
139 $ git diff
142 $ git diff ./src
145 $ git diff HEAD ./src
148 $ git diff HEAD~~ -- HEAD
151 $ git diff --color
154 $ git diff --color=never