Cambiare l'url remoto di un repository Git: Difference between revisions
Jump to navigation
Jump to search
Created page with "* Visualizzare l'url attuale: git remote -v origin https://username@git.example.com/git/project (fetch) origin https://username@git.example.com/git/project (push) * Cambi..." |
(No difference)
|
Latest revision as of 15:33, 1 December 2016
- Visualizzare l'url attuale:
git remote -v
origin https://username@git.example.com/git/project (fetch) origin https://username@git.example.com/git/project (push)
- Cambiarlo:
git remote set-url origin https://newusername@newgit.example.com/git/project
- Verificarlo
git remote origin https://newusername@newgit.example.com/git/project (fetch) origin https://newusername@newgit.example.com/git/project (push)