You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: book/01-introduction/sections/help.asc
+10-4Lines changed: 10 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,13 +3,19 @@
3
3
4
4
If you ever need help while using Git, there are three ways to get the manual page (manpage) help for any of the Git commands:
5
5
6
-
$ git help <verb>
7
-
$ git <verb> --help
8
-
$ man git-<verb>
6
+
[source,console]
7
+
----
8
+
$ git help <verb>
9
+
$ git <verb> --help
10
+
$ man git-<verb>
11
+
----
9
12
10
13
For example, you can get the manpage help for the config command by running(((git commands, help)))
11
14
12
-
$ git help config
15
+
[source,console]
16
+
----
17
+
$ git help config
18
+
----
13
19
14
20
These commands are nice because you can access them anywhere, even offline.
15
21
If the manpages and this book aren't enough and you need in-person help, you can try the `#git` or `#github` channel on the Freenode IRC server (irc.freenode.net).
0 commit comments