Git - Pulling Shared Changes
From EdWiki
Revision as of 09:59, 23 June 2015 by Jshankar (Talk | contribs) (1 revision imported: EdWiki -- From Shukra)
- Goals
- Learn how to pull changes from a shared repository.
Quick hop over to the clone repository and let’s pull down the changes just pushed to the shared repo.
cd ../cloned_hello
NOTE: Now in the cloned_hello repo.
git remote add shared ../hello.git git branch --track shared master git pull shared master cat README