Skip to content

Latest commit

 

History

History
42 lines (26 loc) · 791 Bytes

README.md

File metadata and controls

42 lines (26 loc) · 791 Bytes

https://github.com/PeterHjortLauritzen/topo-gmd.git This is a paper to be published in GMD. Lead author Peter Lauritzen.

Git commands

  • Get help:

git help command where command is { init, config, fetch, pull, ....}

  • Setup and fetch repo:

mkdir src cd src git init git config user.name "PeterHjortLauritzen" git config --global user.name "PeterHjortLauritzen" git fetch https://github.com/PeterHjortLauritzen/topo-gmd.git git pull https://github.com/PeterHjortLauritzen/topo-gmd.git

  • Add a new filename to repo:

git add filename where filename is some file to be added to the repo.

  • Check status:

git status git status -s

  • Checkin all you files (locally):

git commit -a

  • Push to master repo:

git push https://github.com/PeterHjortLauritzen/topo-gmd.git