File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -111,6 +111,26 @@ <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)
114134</ pre >
115135
116136 < p > Like the branch naming, remote alias names are arbitrary - just as 'master'
You can’t perform that action at this time.
0 commit comments