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 134134
135135git clone fetch multiple-remotes
136136(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
140146
141147 # add a specialised refspec mapping
142148 git config --add remote.with/two.fetch +refs/heads/special:refs/remotes/with/two/special
@@ -146,4 +152,4 @@ git clone fetch multiple-remotes
146152 git checkout -b track-special with/two/special
147153 git checkout -b main --track origin/main
148154 git checkout -b other-main --track other/main
149- )
155+ )
You can’t perform that action at this time.
0 commit comments