When I'm going to do the procedure to load the files from my directory to GitHub, through Git, do I need to give git remote add origin ...
every time or only the first time?
When I'm going to do the procedure to load the files from my directory to GitHub, through Git, do I need to give git remote add origin ...
every time or only the first time?
The command git remote add origin
is usually used only once for each remote repository, so the remote configuration is saved in your local repository. You can use the command: git remote -v
to display the configured remote repositories.