diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2015-08-15 14:44:21 +0200 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2015-08-15 14:44:21 +0200 |
| commit | 2d60e1596fd3927b4a983aade1f9b4dd9b59b23c (patch) | |
| tree | dfc2f713c31ee77dfd417f929f5575fa367e0754 /Documentation | |
| parent | 6b2931f57e5514fe565fd4608e60c6f91c97fb6d (diff) | |
magit-run-gitk-{all,branches}: new commands
Add new commands `magit-run-gitk-all' and `magit-run-gitk-branches'
which call `gitk' with the respective argument. Existing command
`magit-run-gitk' now always calls `gitk' without any arguments.
Diffstat (limited to 'Documentation')
| -rw-r--r-- | Documentation/RelNotes/2.2.0.txt | 4 | ||||
| -rw-r--r-- | Documentation/magit.org | 17 | ||||
| -rw-r--r-- | Documentation/magit.texi | 27 |
3 files changed, 33 insertions, 15 deletions
diff --git a/Documentation/RelNotes/2.2.0.txt b/Documentation/RelNotes/2.2.0.txt index 302d6ac..8c5e6c3 100644 --- a/Documentation/RelNotes/2.2.0.txt +++ b/Documentation/RelNotes/2.2.0.txt @@ -164,6 +164,10 @@ Changes since v2.1.0 * New face `magit-section-secondary-heading'. +* New commands `magit-run-gitk-all' and `magit-run-gitk-branches'. + The existing command `magit-run-gitk' now alwyas calls `gitk' + without any arguments. + * New commands `magit-shell-command' and `magit-shell-command-topdir'. This release also contains various documentation fixes, code diff --git a/Documentation/magit.org b/Documentation/magit.org index 11bd68c..54ba2d0 100644 --- a/Documentation/magit.org +++ b/Documentation/magit.org @@ -1010,16 +1010,21 @@ These suffix commands run arbitrary shell commands. These suffix commands start external gui tools. -- Key: ! g, magit-run-git-gui +- Key: ! k, magit-run-gitk - Runs ~git gui~ for the current git repository. + This command runs ~gitk~ in the current repository. -- Key: ! k, magit-run-gitk +- Key: ! a, magit-run-gitk-all - Runs Gitk for the current git repository. + This command runs ~gitk --all~ in the current repository. - Runs ~gitk --all~. With a prefix argument run gitk without any - arguments. +- Key: ! b, magit-run-gitk-branches + + This command runs ~gitk --branches~ in the current repository. + +- Key: ! g, magit-run-git-gui + + This command runs ~git gui~ in the current repository. *** Git executable diff --git a/Documentation/magit.texi b/Documentation/magit.texi index b9a5474..ff5cffe 100644 --- a/Documentation/magit.texi +++ b/Documentation/magit.texi @@ -1413,20 +1413,29 @@ in the top-level directory of the current repository instead. These suffix commands start external gui tools. @table @asis -@kindex ! g -@cindex magit-run-git-gui -@item @kbd{! g} @tie{}@tie{}@tie{}@tie{}(@code{magit-run-git-gui}) - -Runs @code{git gui} for the current git repository. - @kindex ! k @cindex magit-run-gitk @item @kbd{! k} @tie{}@tie{}@tie{}@tie{}(@code{magit-run-gitk}) -Runs Gitk for the current git repository. +This command runs @code{gitk} in the current repository. -Runs @code{gitk --all}. With a prefix argument run gitk without any -arguments. +@kindex ! a +@cindex magit-run-gitk-all +@item @kbd{! a} @tie{}@tie{}@tie{}@tie{}(@code{magit-run-gitk-all}) + +This command runs @code{gitk --all} in the current repository. + +@kindex ! b +@cindex magit-run-gitk-branches +@item @kbd{! b} @tie{}@tie{}@tie{}@tie{}(@code{magit-run-gitk-branches}) + +This command runs @code{gitk --branches} in the current repository. + +@kindex ! g +@cindex magit-run-git-gui +@item @kbd{! g} @tie{}@tie{}@tie{}@tie{}(@code{magit-run-git-gui}) + +This command runs @code{git gui} in the current repository. @end table @node Git executable |
