2
When I’m going to do the procedure to upload the files from my directory to Github, through Git, I need to give git remote add origin ...
every time or only the first time is enough?
2
When I’m going to do the procedure to upload the files from my directory to Github, through Git, I need to give git remote add origin ...
every time or only the first time is enough?
4
The command git remote add origin
usually only used once for each remote repository, so the remote configuration is saved in your local repository. You can use the command: git remote -v
to show configured remote repositories.
Browser other questions tagged git github
You are not signed in. Login or sign up in order to post.
Thank you very much!
– Henrique