git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] git add --interactive: Autoselect single patch file
@ 2008-02-28 11:15 Jörg Sommer
  2008-02-29  2:00 ` Xavier Maillard
  0 siblings, 1 reply; 6+ messages in thread
From: Jörg Sommer @ 2008-02-28 11:15 UTC (permalink / raw)
  To: git; +Cc: Jörg Sommer

If there's only one file to patch, select it automaticly and don't bother
the user. In the case he didn't want do patching, he can say 'd' at the
patch prompt.
---
 git-add--interactive.perl |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/git-add--interactive.perl b/git-add--interactive.perl
index a0a81f1..77ad6fb 100755
--- a/git-add--interactive.perl
+++ b/git-add--interactive.perl
@@ -778,7 +778,7 @@ sub patch_update_cmd {
 		print STDERR "No changes.\n";
 		return 0;
 	}
-	if ($patch_mode) {
+	if ($patch_mode or @mods == 1) {
 		@them = @mods;
 	}
 	else {
-- 
1.5.4.3

^ permalink raw reply related	[flat|nested] 6+ messages in thread
* [PATCH] git add --interactive: Autoselect single patch file
@ 2008-03-22  1:22 Jörg Sommer
  2008-03-22 14:51 ` Johannes Schindelin
  0 siblings, 1 reply; 6+ messages in thread
From: Jörg Sommer @ 2008-03-22  1:22 UTC (permalink / raw)
  To: git; +Cc: normalperson, Jörg Sommer

If there's only one file to patch, select it automaticly and don't bother
the user. In the case he didn't want do patching, he can say 'd' at the
patch prompt.

Signed-off-by: Jörg Sommer <joerg@alea.gnuu.de>
---
 git-add--interactive.perl |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/git-add--interactive.perl b/git-add--interactive.perl
index a0a81f1..77ad6fb 100755
--- a/git-add--interactive.perl
+++ b/git-add--interactive.perl
@@ -778,7 +778,7 @@ sub patch_update_cmd {
 		print STDERR "No changes.\n";
 		return 0;
 	}
-	if ($patch_mode) {
+	if ($patch_mode or @mods == 1) {
 		@them = @mods;
 	}
 	else {
-- 
1.5.4.4

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

end of thread, other threads:[~2008-03-22 16:01 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-28 11:15 [PATCH] git add --interactive: Autoselect single patch file Jörg Sommer
2008-02-29  2:00 ` Xavier Maillard
  -- strict thread matches above, loose matches on Subject: below --
2008-03-22  1:22 Jörg Sommer
2008-03-22 14:51 ` Johannes Schindelin
2008-03-22 15:41   ` Wincent Colaiuta
2008-03-22 16:00     ` Johannes Schindelin

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