Re: [PATCH] completion: complete --move for git branch

2016-06-07 Thread Remi Galan Alfonso
Ville Skyttä writes: > On Mon, Jun 6, 2016 at 5:16 PM, Remi Galan Alfonso > wrote: > > > > Hi, > > > > Ville Skyttä writes: > > > while [ $c -lt $cword ]; do > > > i="${words[c]}" > >

Re: [PATCH] completion: complete --move for git branch

2016-06-06 Thread Ville Skyttä
On Mon, Jun 6, 2016 at 5:16 PM, Remi Galan Alfonso wrote: > > Hi, > > Ville Skyttä writes: > > while [ $c -lt $cword ]; do > > i="${words[c]}" > > case "$i" in > > --d|-m)

Re: [PATCH] completion: complete --move for git branch

2016-06-06 Thread Remi Galan Alfonso
Hi, Ville Skyttä writes: > while [ $c -lt $cword ]; do > i="${words[c]}" > case "$i" in > --d|-m)only_local_ref="y" ;; > --r)has_r="y" ;; > +-d|-m|--move)

[PATCH] completion: complete --move for git branch

2016-06-06 Thread Ville Skyttä
Signed-off-by: Ville Skyttä --- contrib/completion/git-completion.bash | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 3402475..6918cc8 100644 ---