@@ -111,26 +111,6 @@ <h4>
111111< b > $ git remote -v</ b >
112112github git@github.com:schacon/hw.git (fetch)
113113github git@github.com:schacon/hw.git (push)
114- </ pre >
115-
116- < h4 >
117- git remote rename [old-alias] [new-alias]
118- < small > rename remote aliases</ small >
119- </ h4 >
120-
121- < p > If you want to rename remote aliases without having to delete them and add them again
122- you can do that by running < code > git remote rename [old-alias] [new-alias]</ code > . This will
123- allow you to modify current name of the remote.</ p >
124-
125- < pre >
126- < b > $ git remote add github git@github.com:schacon/hw.git</ b >
127- < b > $ git remote -v</ b >
128- github git@github.com:schacon/hw.git (fetch)
129- github git@github.com:schacon/hw.git (push)
130- < b > $ git remote rename github origin</ b >
131- < b > $ git remote -v</ b >
132- origin git@github.com:schacon/hw.git (fetch)
133- origin git@github.com:schacon/hw.git (push)
134114</ pre >
135115
136116 < p > Like the branch naming, remote alias names are arbitrary - just as 'master'
@@ -164,13 +144,33 @@ <h4>
164144< b > $ git remote -v</ b >
165145github git@github.com:schacon/hw.git (fetch)
166146github git@github.com:schacon/hw.git (push)
147+ </ pre >
148+
149+ < h4 >
150+ git remote rename [old-alias] [new-alias]
151+ < small > rename remote aliases</ small >
152+ </ h4 >
153+
154+ < p > If you want to rename remote aliases without having to delete them and add them again
155+ you can do that by running < code > git remote rename [old-alias] [new-alias]</ code > . This will
156+ allow you to modify the current name of the remote.</ p >
157+
158+ < pre >
159+ < b > $ git remote add github git@github.com:schacon/hw.git</ b >
160+ < b > $ git remote -v</ b >
161+ github git@github.com:schacon/hw.git (fetch)
162+ github git@github.com:schacon/hw.git (push)
163+ < b > $ git remote rename github origin</ b >
164+ < b > $ git remote -v</ b >
165+ origin git@github.com:schacon/hw.git (fetch)
166+ origin git@github.com:schacon/hw.git (push)
167167</ pre >
168168
169169 < p class ="nutshell ">
170170 < b > In a nutshell</ b > with < code > git remote</ code > you can list our
171171 remote repositories and whatever URL
172172 that repository is using. You can use < code > git remote add</ code > to
173- add new remotes and < code > git remote rm</ code > to delete existing ones.
173+ add new remotes, < code > git remote rm</ code > to delete existing ones or < code > git remote rename [old-alias] [new-alias] </ code > to rename them .
174174 </ p >
175175
176176 < h4 >
0 commit comments