Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

update my fork repository at github

# Add the remote, call it "upstream":

git remote add upstream https://github.com/whoever/whatever.git

# Fetch all the branches of that remote into remote-tracking branches,
# such as upstream/master:

git fetch upstream

# Make sure that you're on your master branch:

git checkout master

# Rewrite your master branch so that any commits of yours that
# aren't already in upstream/master are replayed on top of that
# other branch:

git rebase upstream/master
Comment

git update fork from original repo

$ git remote add upstream https://github.com/[Original Owner Username]/[Original Repository].git
$ git fetch upstream
$ git checkout master
$ git merge upstream/master
$ git push
Comment

how to update forked repo in GitHub

## Clone your fork:

git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git

## Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream

## Updating your fork from original repo to keep up with their changes:

git pull upstream master
Comment

PREVIOUS NEXT
Code Example
Shell :: npm install typeorm 
Shell :: connect to a pod 
Shell :: wsl2 release memory 
Shell :: rename pc powershell 
Shell :: install snap change in progress ubuntu 
Shell :: install react-player react 
Shell :: how to add color in text github readme 
Shell :: open pdf command line linux 
Shell :: permission denied /dev/kvm 
Shell :: docker execute command in container 
Shell :: cmd find file dir 
Shell :: scp server to local 
Shell :: add your SSH key to the ssh-agent. 
Shell :: find out a branch a parent branch git 
Shell :: configure meld as git mergetool ubuntu 
Shell :: git change commit author 
Shell :: compress folder ubuntu 
Shell :: whoami linux 
Shell :: git check if commit in master 
Shell :: image converter linux 
Shell :: git see tags 
Shell :: uninstall plesk ubuntu 
Shell :: import ovpn file ubuntu 
Shell :: angular add component 
Shell :: git see pending push 
Shell :: install vue-material 
Shell :: add local folder to git repo 
Shell :: install drush ubuntu 20.04 
Shell :: git sync branches 
Shell :: how to rename origin in git 
ADD CONTENT
Topic
Content
Source link
Name
9+1 =