Skip to content
pshannon-bioc edited this page Oct 6, 2012 · 2 revisions

[ WIKI HOME]

Overview of basic operations

  • Making changes to your working copy propagate them to BOTH of your repos:
    • Add some text to REAMDE.md, whose contents you originall created at the github website
    • git diff README.md will report differences between your local repo and your working copy
    • update the local repo:
      git commit -m "added one line, modifying my local working copy" README.md
    • update github: git push
    • make sure your local repo and working copy have a record of the update you just did to the github repo: git pull