How To Update Local Folder In Git

[Solved] How To Update Local Folder In Git | Shell - Code Explorer | yomemimo.com
Question : how to update a local project from git

Answered by : xerothermic-xenomorph-63tr3hwvkl0x

git pull origin master

Source : https://stackoverflow.com/questions/1443210/updating-a-local-repository-with-changes-from-a-github-repository | Last Update : Fri, 09 Oct 20

Question : how to update your local repository

Answered by : bored-coder

First, navigate to the desired directory:
$ cd ~/Documents/GitHub/DI-NEON-participants
And then type:
$ git remote add upstream https://github.com/NEONS...
Update local repo using git pull with the added directions of
upstream indicating the central repository and master specifying
which branch you are pulling down:
$ git pull upstream master

Source : https://www.neonscience.org/git-setup-remote | Last Update : Wed, 15 Apr 20

Answers related to how to update local folder in git

Code Explorer Popular Question For Shell