git config --get remote.origin.url
21 septembre 2020
afficher l’url du repo distant courrant:
git config --get remote.origin.url
Pour plus d’information sur le depot distant:
git remote show origin
Lister les depots distants
git remote -v
Changer de dépot distants
git remote set-url origin git@github.com:kotlin-codes/hands-on-design-pattern-kotlin.git
Ajouter quand le dépot n’existe pas
git remote add origin git@github.com:kotlin-codes/foo.git
Pusher
git push -u origin master
ou
git push -u origin main
changement d’adresse ip
relancer la commande suivante pour que les pushs passent.
git remote set-url origin git@github.com:USER_ACCOUNT/PROJECT.git