Skip to content

Commit e6ebf98

Browse files
committed
Add git remote rename
1 parent 5b2906c commit e6ebf98

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

remotes/index.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,26 @@ <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)
114134
</pre>
115135

116136
<p>Like the branch naming, remote alias names are arbitrary - just as 'master'

0 commit comments

Comments
 (0)