git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [StGit PATCH] Remove 'add' command entries from stgit-completion.bash
@ 2008-08-30 19:46 Shinya Kuribayashi
  2008-08-30 20:30 ` [StGit PATCH revised] Remove add/applied/unapplied bash completion entries Shinya Kuribayashi
  0 siblings, 1 reply; 5+ messages in thread
From: Shinya Kuribayashi @ 2008-08-30 19:46 UTC (permalink / raw)
  To: catalin.marinas; +Cc: git

"stg add" was dropped several months ago.

Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
---
contrib/stgit-completion.bash |    2 --
1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/contrib/stgit-completion.bash b/contrib/stgit-completion.bash
index 1867e6b..a25a603 100644
--- a/contrib/stgit-completion.bash
+++ b/contrib/stgit-completion.bash
@@ -11,7 +11,6 @@
#         . ~/.stgit-completion.bash

_stg_commands="
-    add
    applied
    branch
    delete
@@ -264,7 +263,6 @@ _stg ()
        # working-copy commands
        diff)   _stg_patches_options $command _applied_patches "-r --range" ;;
	resolved) _complete_files $command "$(_conflicting_files)" ;;
-	add)	_complete_files $command "$(_unknown_files)" ;;
#	rm)	_complete_files $command "$(_known_files)" ;;
	# commands that usually raher accept branches
	branch) _complete_branch $command _all_branches ;;

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

* [StGit PATCH revised] Remove add/applied/unapplied bash completion entries
  2008-08-30 19:46 [StGit PATCH] Remove 'add' command entries from stgit-completion.bash Shinya Kuribayashi
@ 2008-08-30 20:30 ` Shinya Kuribayashi
  2008-09-05 17:16   ` [StGit PATCH rev3] contrib/stgit-completion.bash: Remove add/applied/cp/rm/unapplied Shinya Kuribayashi
  0 siblings, 1 reply; 5+ messages in thread
From: Shinya Kuribayashi @ 2008-08-30 20:30 UTC (permalink / raw)
  To: catalin.marinas; +Cc: git

These commands are not available any more.

Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
---
Shinya Kuribayashi wrote:
> "stg add" was dropped several months ago.

Hm, I should have removed applied/unapplied entries also.

thanks,

  Shinya

 contrib/stgit-completion.bash |    4 ----
 1 files changed, 0 insertions(+), 4 deletions(-)

diff --git a/contrib/stgit-completion.bash b/contrib/stgit-completion.bash
index 1867e6b..ac868e7 100644
--- a/contrib/stgit-completion.bash
+++ b/contrib/stgit-completion.bash
@@ -11,8 +11,6 @@
 #         . ~/.stgit-completion.bash
 
 _stg_commands="
-    add
-    applied
     branch
     delete
     diff
@@ -51,7 +49,6 @@ _stg_commands="
     status
     sync
     top
-    unapplied
     uncommit
     unhide
 "
@@ -264,7 +261,6 @@ _stg ()
         # working-copy commands
         diff)   _stg_patches_options $command _applied_patches "-r --range" ;;
 	resolved) _complete_files $command "$(_conflicting_files)" ;;
-	add)	_complete_files $command "$(_unknown_files)" ;;
 #	rm)	_complete_files $command "$(_known_files)" ;;
 	# commands that usually raher accept branches
 	branch) _complete_branch $command _all_branches ;;

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

* [StGit PATCH rev3] contrib/stgit-completion.bash: Remove add/applied/cp/rm/unapplied
  2008-08-30 20:30 ` [StGit PATCH revised] Remove add/applied/unapplied bash completion entries Shinya Kuribayashi
@ 2008-09-05 17:16   ` Shinya Kuribayashi
  2008-09-06  6:18     ` Karl Hasselström
  2008-09-06 14:28     ` Karl Hasselström
  0 siblings, 2 replies; 5+ messages in thread
From: Shinya Kuribayashi @ 2008-09-05 17:16 UTC (permalink / raw)
  To: catalin.marinas, kha; +Cc: git

These commands are no longer available.

Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
---

Shinya Kuribayashi wrote:
> > "stg add" was dropped several months ago.
> 
> Hm, I should have removed applied/unapplied entries also.

Sorry for the noise, again.  I've still missed `cp' and `rm', sigh.
Hope this one is finally get merged.  Thanks!

  Shinya

 contrib/stgit-completion.bash |    7 -------
 1 files changed, 0 insertions(+), 7 deletions(-)

diff --git a/contrib/stgit-completion.bash b/contrib/stgit-completion.bash
index 1867e6b..1467c28 100644
--- a/contrib/stgit-completion.bash
+++ b/contrib/stgit-completion.bash
@@ -11,8 +11,6 @@
 #         . ~/.stgit-completion.bash
 
 _stg_commands="
-    add
-    applied
     branch
     delete
     diff
@@ -20,7 +18,6 @@ _stg_commands="
     clone
     coalesce
     commit
-    cp
     edit
     export
     files
@@ -44,14 +41,12 @@ _stg_commands="
     rename
     repair
     resolved
-    rm
     series
     show
     sink
     status
     sync
     top
-    unapplied
     uncommit
     unhide
 "
@@ -264,8 +259,6 @@ _stg ()
         # working-copy commands
         diff)   _stg_patches_options $command _applied_patches "-r --range" ;;
 	resolved) _complete_files $command "$(_conflicting_files)" ;;
-	add)	_complete_files $command "$(_unknown_files)" ;;
-#	rm)	_complete_files $command "$(_known_files)" ;;
 	# commands that usually raher accept branches
 	branch) _complete_branch $command _all_branches ;;
 	rebase) _complete_branch $command _all_branches ;;

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

* Re: [StGit PATCH rev3] contrib/stgit-completion.bash: Remove add/applied/cp/rm/unapplied
  2008-09-05 17:16   ` [StGit PATCH rev3] contrib/stgit-completion.bash: Remove add/applied/cp/rm/unapplied Shinya Kuribayashi
@ 2008-09-06  6:18     ` Karl Hasselström
  2008-09-06 14:28     ` Karl Hasselström
  1 sibling, 0 replies; 5+ messages in thread
From: Karl Hasselström @ 2008-09-06  6:18 UTC (permalink / raw)
  To: Shinya Kuribayashi; +Cc: catalin.marinas, git

On 2008-09-06 02:16:22 +0900, Shinya Kuribayashi wrote:

> These commands are no longer available.

Thanks again.

> Hope this one is finally get merged. Thanks!

It will -- Catalin and I have both been busy this week, but I have
some time set aside for StGit this weekend.

-- 
Karl Hasselström, kha@treskal.com
      www.treskal.com/kalle

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

* Re: [StGit PATCH rev3] contrib/stgit-completion.bash: Remove add/applied/cp/rm/unapplied
  2008-09-05 17:16   ` [StGit PATCH rev3] contrib/stgit-completion.bash: Remove add/applied/cp/rm/unapplied Shinya Kuribayashi
  2008-09-06  6:18     ` Karl Hasselström
@ 2008-09-06 14:28     ` Karl Hasselström
  1 sibling, 0 replies; 5+ messages in thread
From: Karl Hasselström @ 2008-09-06 14:28 UTC (permalink / raw)
  To: Shinya Kuribayashi; +Cc: catalin.marinas, git

On 2008-09-06 02:16:22 +0900, Shinya Kuribayashi wrote:

> Hope this one is finally get merged.  Thanks!

I've applied your patches and pushed them out on my "safe" branch,
which Catalin pulls into his "master" every now and then.

-- 
Karl Hasselström, kha@treskal.com
      www.treskal.com/kalle

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

end of thread, other threads:[~2008-09-06 14:07 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-30 19:46 [StGit PATCH] Remove 'add' command entries from stgit-completion.bash Shinya Kuribayashi
2008-08-30 20:30 ` [StGit PATCH revised] Remove add/applied/unapplied bash completion entries Shinya Kuribayashi
2008-09-05 17:16   ` [StGit PATCH rev3] contrib/stgit-completion.bash: Remove add/applied/cp/rm/unapplied Shinya Kuribayashi
2008-09-06  6:18     ` Karl Hasselström
2008-09-06 14:28     ` Karl Hasselström

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).