summaryrefslogtreecommitdiff
path: root/src/git/_gitconfig
diff options
context:
space:
mode:
Diffstat (limited to 'src/git/_gitconfig')
-rw-r--r--src/git/_gitconfig9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/git/_gitconfig b/src/git/_gitconfig
index b2dcb56..83cf455 100644
--- a/src/git/_gitconfig
+++ b/src/git/_gitconfig
@@ -49,3 +49,12 @@
#[core]
# pager = less -R -+X
+# How to push to multiple remotes in one go:
+# git push all --dry-run --all
+# [remote "all"]
+# pushurl = user@ONE.example.com:foo/bar.git
+# pushurl = user@TWO.example.com:foo/bar.git
+
+# How to fetch from multiple remotes (but NOT all!) in one go:
+# git fetch --multiple origin upstream
+