Git Tutorial
Removing common changes in git
Lets learn how to extract changes from the common repository.
Quickly switch to the cloned repository and pull the changes just sent to the common repository.
RUN:
cd ../cloned_hello
Note: We are now in the cloned_hello repository.
Continue with …
RUN:
git remote add shared ../hello.git
git branch --track shared master
git pull shared master
cat README