Answers for "add upstream branch."

1

add upstream in git

# checking the url of remotes
git remote -v

# add another url to git
git remote add upstream <url>

# now you can use

git pull upstream master (or other branch names)

upsteam is the standard name used, but you can change it if you want to
Posted by: Guest on December-02-2021
-1

add upstream branch git

git remote add upstream [email protected]:some-gatekeeper-maintainer/some-project.git
Posted by: Guest on December-04-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language