Horje
git push set upstream Code Example
git set upstream
git branch --set-upstream-to <remote-branch>

// example
git branch --set-upstream-to origin feature-branch

// show up which remote branch a local branch is tracking
git branch -vv

// short version to set upstream with very first push
git push -u origin local-branch
git push set upstream
git push --set-upstream origin <branch>
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
git set upstream repository
$ git remote add upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git




Shell

Related
how to remove unused pip dependencies on mac Code Example how to remove unused pip dependencies on mac Code Example
install openssh server linux Code Example install openssh server linux Code Example
pom extract version linux Code Example pom extract version linux Code Example
hide top bar ubuntu 20.04 Code Example hide top bar ubuntu 20.04 Code Example
install stacer ubuntu or linux Code Example install stacer ubuntu or linux Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12