Skip to content

Commit 6321e12

Browse files
committed
Fix typo and move 'git remote rename' location
1 parent e6ebf98 commit 6321e12

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

remotes/index.html

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -111,26 +111,6 @@ <h4>
111111
<b>$ git remote -v</b>
112112
github [email protected]:schacon/hw.git (fetch)
113113
github [email protected]: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 [email protected]:schacon/hw.git</b>
127-
<b>$ git remote -v</b>
128-
github [email protected]:schacon/hw.git (fetch)
129-
github [email protected]:schacon/hw.git (push)
130-
<b>$ git remote rename github origin</b>
131-
<b>$ git remote -v</b>
132-
origin [email protected]:schacon/hw.git (fetch)
133-
origin [email protected]: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>
165145
github [email protected]:schacon/hw.git (fetch)
166146
github [email protected]: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 [email protected]:schacon/hw.git</b>
160+
<b>$ git remote -v</b>
161+
github [email protected]:schacon/hw.git (fetch)
162+
github [email protected]:schacon/hw.git (push)
163+
<b>$ git remote rename github origin</b>
164+
<b>$ git remote -v</b>
165+
origin [email protected]:schacon/hw.git (fetch)
166+
origin [email protected]: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

Comments
 (0)