git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] bash completion: Add '--intent-to-add' long option for 'git add'
@ 2008-12-10 19:39 Lee Marlow
  2008-12-10 19:39 ` [PATCH 2/2] bash completion: Use 'git add' completions for 'git stage' Lee Marlow
  2008-12-10 19:41 ` [PATCH 1/2] bash completion: Add '--intent-to-add' long option for 'git add' Shawn O. Pearce
  0 siblings, 2 replies; 6+ messages in thread
From: Lee Marlow @ 2008-12-10 19:39 UTC (permalink / raw)
  To: Shawn O. Pearce; +Cc: git, Lee Marlow

Signed-off-by: Lee Marlow <lee.marlow@gmail.com>
---
 contrib/completion/git-completion.bash |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash
index c79c98f..5356e5b 100755
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash
@@ -563,7 +563,7 @@ _git_add ()
 	--*)
 		__gitcomp "
 			--interactive --refresh --patch --update --dry-run
-			--ignore-errors
+			--ignore-errors --intent-to-add
 			"
 		return
 	esac
-- 
1.6.1.rc2.14.g5363d

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 2/2] bash completion: Use 'git add' completions for 'git stage'
  2008-12-10 19:39 [PATCH 1/2] bash completion: Add '--intent-to-add' long option for 'git add' Lee Marlow
@ 2008-12-10 19:39 ` Lee Marlow
  2008-12-10 19:59   ` Shawn O. Pearce
  2008-12-10 19:41 ` [PATCH 1/2] bash completion: Add '--intent-to-add' long option for 'git add' Shawn O. Pearce
  1 sibling, 1 reply; 6+ messages in thread
From: Lee Marlow @ 2008-12-10 19:39 UTC (permalink / raw)
  To: Shawn O. Pearce; +Cc: git, Lee Marlow

Signed-off-by: Lee Marlow <lee.marlow@gmail.com>
---
 contrib/completion/git-completion.bash |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash
index 5356e5b..7e2b482 100755
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash
@@ -1660,6 +1660,7 @@ _git ()
 	show)        _git_show ;;
 	show-branch) _git_show_branch ;;
 	stash)       _git_stash ;;
+	stage)       _git_add ;;
 	submodule)   _git_submodule ;;
 	svn)         _git_svn ;;
 	tag)         _git_tag ;;
-- 
1.6.1.rc2.14.g5363d

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/2] bash completion: Add '--intent-to-add' long option for 'git add'
  2008-12-10 19:39 [PATCH 1/2] bash completion: Add '--intent-to-add' long option for 'git add' Lee Marlow
  2008-12-10 19:39 ` [PATCH 2/2] bash completion: Use 'git add' completions for 'git stage' Lee Marlow
@ 2008-12-10 19:41 ` Shawn O. Pearce
  2009-01-09 16:05   ` Lee Marlow
  1 sibling, 1 reply; 6+ messages in thread
From: Shawn O. Pearce @ 2008-12-10 19:41 UTC (permalink / raw)
  To: Lee Marlow; +Cc: git

Lee Marlow <lee.marlow@gmail.com> wrote:
> Signed-off-by: Lee Marlow <lee.marlow@gmail.com>
> ---
>  contrib/completion/git-completion.bash |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)

Trivially-Acked-by: Shawn O. Pearce <spearce@spearce.org>

 
> diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash
> index c79c98f..5356e5b 100755
> --- a/contrib/completion/git-completion.bash
> +++ b/contrib/completion/git-completion.bash
> @@ -563,7 +563,7 @@ _git_add ()
>  	--*)
>  		__gitcomp "
>  			--interactive --refresh --patch --update --dry-run
> -			--ignore-errors
> +			--ignore-errors --intent-to-add
>  			"
>  		return
>  	esac
> -- 
> 1.6.1.rc2.14.g5363d
> 

-- 
Shawn.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 2/2] bash completion: Use 'git add' completions for 'git stage'
  2008-12-10 19:39 ` [PATCH 2/2] bash completion: Use 'git add' completions for 'git stage' Lee Marlow
@ 2008-12-10 19:59   ` Shawn O. Pearce
  2009-01-09 16:06     ` Lee Marlow
  0 siblings, 1 reply; 6+ messages in thread
From: Shawn O. Pearce @ 2008-12-10 19:59 UTC (permalink / raw)
  To: Lee Marlow; +Cc: git

Lee Marlow <lee.marlow@gmail.com> wrote:
> Signed-off-by: Lee Marlow <lee.marlow@gmail.com>
> ---
>  contrib/completion/git-completion.bash |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)

Also,

Trivially-Acked-by: Shawn O. Pearce <spearce@spearce.org>
 
> diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash
> index 5356e5b..7e2b482 100755
> --- a/contrib/completion/git-completion.bash
> +++ b/contrib/completion/git-completion.bash
> @@ -1660,6 +1660,7 @@ _git ()
>  	show)        _git_show ;;
>  	show-branch) _git_show_branch ;;
>  	stash)       _git_stash ;;
> +	stage)       _git_add ;;
>  	submodule)   _git_submodule ;;
>  	svn)         _git_svn ;;
>  	tag)         _git_tag ;;
> -- 
> 1.6.1.rc2.14.g5363d
> 
> --
> To unsubscribe from this list: send the line "unsubscribe git" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

-- 
Shawn.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/2] bash completion: Add '--intent-to-add' long option for 'git add'
  2008-12-10 19:41 ` [PATCH 1/2] bash completion: Add '--intent-to-add' long option for 'git add' Shawn O. Pearce
@ 2009-01-09 16:05   ` Lee Marlow
  0 siblings, 0 replies; 6+ messages in thread
From: Lee Marlow @ 2009-01-09 16:05 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git, Shawn O. Pearce

On Wed, Dec 10, 2008 at 12:41 PM, Shawn O. Pearce <spearce@spearce.org> wrote:
> Lee Marlow <lee.marlow@gmail.com> wrote:
>> Signed-off-by: Lee Marlow <lee.marlow@gmail.com>
>> ---
>>  contrib/completion/git-completion.bash |    2 +-
>>  1 files changed, 1 insertions(+), 1 deletions(-)
>
> Trivially-Acked-by: Shawn O. Pearce <spearce@spearce.org>
>

Bump :)

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 2/2] bash completion: Use 'git add' completions for 'git stage'
  2008-12-10 19:59   ` Shawn O. Pearce
@ 2009-01-09 16:06     ` Lee Marlow
  0 siblings, 0 replies; 6+ messages in thread
From: Lee Marlow @ 2009-01-09 16:06 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git, Shawn O. Pearce

On Wed, Dec 10, 2008 at 12:59 PM, Shawn O. Pearce <spearce@spearce.org> wrote:
> Lee Marlow <lee.marlow@gmail.com> wrote:
>> Signed-off-by: Lee Marlow <lee.marlow@gmail.com>
>> ---
>>  contrib/completion/git-completion.bash |    1 +
>>  1 files changed, 1 insertions(+), 0 deletions(-)
>
> Also,
>
> Trivially-Acked-by: Shawn O. Pearce <spearce@spearce.org>

Nudge

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2009-01-09 16:07 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-10 19:39 [PATCH 1/2] bash completion: Add '--intent-to-add' long option for 'git add' Lee Marlow
2008-12-10 19:39 ` [PATCH 2/2] bash completion: Use 'git add' completions for 'git stage' Lee Marlow
2008-12-10 19:59   ` Shawn O. Pearce
2009-01-09 16:06     ` Lee Marlow
2008-12-10 19:41 ` [PATCH 1/2] bash completion: Add '--intent-to-add' long option for 'git add' Shawn O. Pearce
2009-01-09 16:05   ` Lee Marlow

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).