File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 134
134
135
135
git clone fetch multiple-remotes
136
136
(cd multiple-remotes
137
- git remote add other ../fetch && git fetch other
138
- git remote add with/two/slashes ../fetch && git fetch with/two/slashes
139
- git remote add with/two ../fetch && git fetch with/two
137
+ git remote add other ../fetch
138
+ git fetch other
139
+
140
+ git remote add with/two/slashes ../fetch
141
+ git fetch with/two/slashes
142
+
143
+ git config remote.with/two.url ../fetch
144
+ git config remote.with/two.fetch ' +refs/heads/*:refs/remotes/with/two/*'
145
+ git fetch with/two
140
146
141
147
# add a specialised refspec mapping
142
148
git config --add remote.with/two.fetch +refs/heads/special:refs/remotes/with/two/special
@@ -146,4 +152,4 @@ git clone fetch multiple-remotes
146
152
git checkout -b track-special with/two/special
147
153
git checkout -b main --track origin/main
148
154
git checkout -b other-main --track other/main
149
- )
155
+ )
You can’t perform that action at this time.
0 commit comments