Answers for "add url git"

15

add url git

$ git remote add origin https://github.com/user/repo.git
# Set a new remote

$ git remote -v
# Verify new remote
> origin  https://github.com/user/repo.git (fetch)
> origin  https://github.com/user/repo.git (push)
Posted by: Guest on April-22-2020
10

set git origin

git remote add origin [email protected]:portfolio/space.space_name.git
Posted by: Guest on April-01-2020
5

add remote in git

git remote add origin [email protected]:portfolio/space.space_name.git#set a new remotegit remote -v#Verify new remoteorigin  [email protected]:portfolio/space.space_name.git (fetch)origin  [email protected]:portfolio/space.space_name.git (push)
Posted by: Guest on February-11-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language