mirror of
https://github.com/jbranchaud/til
synced 2026-01-03 23:28:02 +00:00
Add Update The URL Of A Remote as a git til
This commit is contained in:
@@ -7,7 +7,7 @@ variety of languages and technologies. These are things that don't really
|
|||||||
warrant a full blog post. These are mostly things I learn by pairing with
|
warrant a full blog post. These are mostly things I learn by pairing with
|
||||||
smart people at [Hashrocket](http://hashrocket.com/).
|
smart people at [Hashrocket](http://hashrocket.com/).
|
||||||
|
|
||||||
_519 TILs and counting..._
|
_520 TILs and counting..._
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
@@ -168,6 +168,7 @@ _519 TILs and counting..._
|
|||||||
- [Stashing Untracked Files](git/stashing-untracked-files.md)
|
- [Stashing Untracked Files](git/stashing-untracked-files.md)
|
||||||
- [Untrack A Directory Of Files Without Deleting](git/untrack-a-directory-of-files-without-deleting.md)
|
- [Untrack A Directory Of Files Without Deleting](git/untrack-a-directory-of-files-without-deleting.md)
|
||||||
- [Untrack A File Without Deleting It](git/untrack-a-file-without-deleting-it.md)
|
- [Untrack A File Without Deleting It](git/untrack-a-file-without-deleting-it.md)
|
||||||
|
- [Update The URL Of A Remote](git/update-the-url-of-a-remote.md)
|
||||||
- [Verbose Commit Message](git/verbose-commit-message.md)
|
- [Verbose Commit Message](git/verbose-commit-message.md)
|
||||||
- [Viewing A File On Another Branch](git/viewing-a-file-on-another-branch.md)
|
- [Viewing A File On Another Branch](git/viewing-a-file-on-another-branch.md)
|
||||||
- [What Changed?](git/what-changed.md)
|
- [What Changed?](git/what-changed.md)
|
||||||
|
|||||||
29
git/update-the-url-of-a-remote.md
Normal file
29
git/update-the-url-of-a-remote.md
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
# Update The URL Of A Remote
|
||||||
|
|
||||||
|
I just changed the name of a Github repository. One of the implications of
|
||||||
|
this is that the remote URL that my local git repository has on record is
|
||||||
|
now out of date. I need to update it.
|
||||||
|
|
||||||
|
If I use `git-remote` with the `-v` flag. I can see what remotes I currently
|
||||||
|
have.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ git remote -v
|
||||||
|
origin git@github.com:jbranchaud/pokemon.git (fetch)
|
||||||
|
origin git@github.com:jbranchaud/pokemon.git (push)
|
||||||
|
```
|
||||||
|
|
||||||
|
Now, to update the URL for that remote, I can use `git remote set-url`
|
||||||
|
specifying the name of the remote and the updated URL.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ git remote set-url origin git@github.com:jbranchaud/pokemon_deluxe.git
|
||||||
|
```
|
||||||
|
|
||||||
|
If I check again, I can see it has been updated accordingly.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ git remote -v
|
||||||
|
origin git@github.com:jbranchaud/pokemon_deluxe.git (fetch)
|
||||||
|
origin git@github.com:jbranchaud/pokemon_deluxe.git (push)
|
||||||
|
```
|
||||||
Reference in New Issue
Block a user