Added more man-page declarations.

This commit is contained in:
Phil Jackson 2010-09-17 14:41:35 +01:00
parent bdaee3c8a1
commit 3e91027b5d

View file

@ -47,11 +47,14 @@
(":" "Git command" magit-git-command))) (":" "Git command" magit-git-command)))
(fetching (fetching
(man-page "git-fetch")
(actions (actions
("f" "Fetch" magit-fetch) ("f" "Fetch" magit-fetch))
("r" "Remote update" magit-remote-update))) (switches
("-a" "All" "--all")))
(pushing (pushing
(man-page "git-push")
(actions (actions
("p" "Push" magit-push)) ("p" "Push" magit-push))
(switches (switches
@ -59,12 +62,14 @@
("-d" "Dry run" "-n"))) ("-d" "Dry run" "-n")))
(pulling (pulling
(man-page "git-pull")
(actions (actions
("p" "Pull" magit-pull)) ("p" "Pull" magit-pull))
(switches (switches
("-r" "Rebase" "--rebase"))) ("-r" "Rebase" "--rebase")))
(branching (branching
(man-page "git-branch")
(actions (actions
("V" "Branch manager" magit-show-branches) ("V" "Branch manager" magit-show-branches)
("B" "Create" magit-create-branch) ("B" "Create" magit-create-branch)
@ -73,6 +78,7 @@
("c" "Checkout" magit-checkout))) ("c" "Checkout" magit-checkout)))
(tagging (tagging
(man-page "git-tag")
(actions (actions
("t" "Lightweight" magit-tag) ("t" "Lightweight" magit-tag)
("T" "Annotated" magit-annotated-tag)) ("T" "Annotated" magit-annotated-tag))
@ -80,6 +86,7 @@
("-f" "Force" "-f"))) ("-f" "Force" "-f")))
(stashing (stashing
(man-page "git-stash")
(actions (actions
("s" "Save" magit-stash) ("s" "Save" magit-stash)
("S" "Snapshot" magit-stash-snapshot)) ("S" "Snapshot" magit-stash-snapshot))
@ -87,6 +94,7 @@
("-k" "Keep index" "--keep-index"))) ("-k" "Keep index" "--keep-index")))
(merging (merging
(man-page "git-merge")
(actions (actions
("m" "Merge" magit-merge)) ("m" "Merge" magit-merge))
(switches (switches