summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCsaba Henk <csaba@redhat.com>2012-04-16 17:53:06 +0200
committerAnand Avati <avati@redhat.com>2012-04-23 14:41:19 -0700
commite28868c78357dfd2a2d2939d5c279cb275fb3cac (patch)
treec45c47c468497df2f2d1421e09d7c078f201c215
parentdeea482deff52251f9fe39bc3bda09f58397cb06 (diff)
gerrit / rfc.sh: further trim of fetch target
We _really_ don't need anything to be fetched from anywhere except for origin. We can do away with all other tracked repos (which still can be a nuisance eg. if they are in a VPN that we are not happen to be joined to). Change-Id: I98b375698f999500153e5a000dc8dac5005dfaec BUG: 764966 Signed-off-by: Csaba Henk <csaba@redhat.com> Reviewed-on: http://review.gluster.com/3163 Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Anand Avati <avati@redhat.com>
-rwxr-xr-xrfc.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/rfc.sh b/rfc.sh
index 274d9d137..b0d01031d 100755
--- a/rfc.sh
+++ b/rfc.sh
@@ -31,7 +31,7 @@ function is_num()
function rebase_changes()
{
- git fetch --all;
+ git fetch origin;
GIT_EDITOR=$0 git rebase -i origin/$branch;
}