Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
Defaulting fetch to origin when set in the repo-config
[gitweb.git]
/
git-fetch.sh
diff --git
a/git-fetch.sh
b/git-fetch.sh
index b6a223ee466b69c58027cd0100508e2630fed598..f7167abdf09c815fc8614b47ded0c6bc4518d6f8 100755
(executable)
--- a/
git-fetch.sh
+++ b/
git-fetch.sh
@@
-70,7
+70,8
@@
case "$#" in
0)
test -f "$GIT_DIR/branches/origin" ||
test -f "$GIT_DIR/remotes/origin" ||
- die "Where do you want to fetch from today?"
+ git-repo-config --get remote.origin.url >/dev/null ||
+ die "Where do you want to fetch from today?"
set origin ;;
esac