diff options
author | Clint Adams <clint@users.sourceforge.net> | 2008-08-16 18:02:14 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2008-08-16 18:02:14 +0000 |
commit | 7438bada2f1bc1585912eed10c3098015c7b6c91 (patch) | |
tree | fe94fee1f132145010fbc311ba80fbb22c4fbbb3 | |
parent | 71b215074ad70ad63f076cb2b1fa306ee98f1128 (diff) | |
download | zsh-7438bada2f1bc1585912eed10c3098015c7b6c91.tar.gz zsh-7438bada2f1bc1585912eed10c3098015c7b6c91.tar.xz zsh-7438bada2f1bc1585912eed10c3098015c7b6c91.zip |
25464: patch from Mikael Magnusson to add --graph.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | Completion/Unix/Command/_git | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index e53903002..ec9588c84 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2008-08-16 Clint Adams <clint@zsh.org> + * 25464: Completion/Unix/Command/_git: patch from Mikael Magnusson + to add --graph. + * 25463: Completion/Unix/Command/_git: patch to add git completion for --base/-1, --ours/-2 and --theirs/-3, from Mikael Magnusson. diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git index e8efa520d..833a475d5 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -4135,6 +4135,7 @@ __git_setup_revision_arguments () { '--tags[show all commits from refs/tags]' '--remotes[show all commits from refs/remotes]' '--cherry-pick[omit any same-change commits]' + '--graph[draw a graphical representation of the commit history]' '--reflog[show all commits from reflogs]' '(-g --walk-reflogs)'{-g,--walk-reflogs}'[walk reflog entries from most recent to oldest]' '*--not[reverses meaning of ^ prefix for revisions that follow]' |