Git - Using Remote
From EdWiki
Using Remote
- Use git clone to replicate repository
$ git clone gituser@shukra.cedt.iisc.ernet.in:/opt/gitrepo/my_project.git
- Get changes with
git fetch
It doesn't automaticlly merge it any of your work or modify what you are cuurently working on.
git pull
Automatically fetch and merge a remote branch into your current branch
- Propagate changes with
$ git push origin master