* [PATCH/RFC] git-svn: forward -q to git-rebase
@ 2012-06-12 15:18 Erik Faye-Lund
0 siblings, 0 replies; only message in thread
From: Erik Faye-Lund @ 2012-06-12 15:18 UTC (permalink / raw)
To: git
When calling "git svn rebase -q", we still get the message
"Current branch BRANCHNAME is up to date." from git-rebase, which
isn't quite as quiet as we could be.
Fix this by forwarding the -q flag to git-rebase.
Signed-off-by: Erik Faye-Lund <kusmabite@gmail.com>
---
I just set up a cronjob that did a "git svn rebase -q", and noticed
it triggered cron to send me an e-mail every time.
Since I'm not really interested in getting an e-mail every time the
script does nothing, but I'd like the option to get an e-mail whenever
it does something useful, perhaps something like this can benefit
other people as well?
git-svn.perl | 1 +
1 file changed, 1 insertion(+)
diff --git a/git-svn.perl b/git-svn.perl
index 0b074c4..34baa43 100755
--- a/git-svn.perl
+++ b/git-svn.perl
@@ -1590,6 +1590,7 @@ sub cmd_gc {
sub rebase_cmd {
my @cmd = qw/rebase/;
push @cmd, '-v' if $_verbose;
+ push @cmd, '-q' if $_q;
push @cmd, qw/--merge/ if $_merge;
push @cmd, "--strategy=$_strategy" if $_strategy;
push @cmd, "--preserve-merges" if $_preserve_merges;
--
1.7.11.rc2.5.g68f532f.dirty
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2012-06-12 16:12 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-12 15:18 [PATCH/RFC] git-svn: forward -q to git-rebase Erik Faye-Lund
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).