DEV Community

Discussion on: Essential git commands

Collapse
 
iamphytan profile image
Damien LaRocque
  • git remote add <remote-name> <remote-url>
    Add remote to project

  • git remote rename <old-remote-name> <new-remote-name>
    Rename project remote

  • git remote rm <remote-name>
    Delete remote from project

Collapse
 
abdulshakoor profile image
Shoukrey Tom

great

Collapse
 
souravbadami profile image
Sourav Badami

Something related to git remote which helps in changing the existing remote URL for a remote.

git remote set-url <existing-remote-name> <new-remote-url>
Collapse
 
iamphytan profile image
Damien LaRocque

Yes, forgot this one
Thank you very much 🙏