diff options
author | Timothy Pearson <[email protected]> | 2011-07-10 15:13:19 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-07-10 15:13:19 -0500 |
commit | 16630c3eff313238fa8412275555285c9195981b (patch) | |
tree | dbf6eebc432ebf792b6f085c6e7d537dd6a257e4 | |
parent | 9ea067f0d7c6af37fd0b713a658e3356f760a4d0 (diff) | |
download | tde-16630c3eff313238fa8412275555285c9195981b.tar.gz tde-16630c3eff313238fa8412275555285c9195981b.zip |
Updated GIT readme file
-rw-r--r-- | README.GIT | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/README.GIT b/README.GIT index 8fab8aabb..351ac71dd 100644 --- a/README.GIT +++ b/README.GIT @@ -1,14 +1,25 @@ GIT tutorial on kernel.org: http://www.kernel.org/pub/software/scm/git/docs/gittutorial.html +GIT "cheat sheet" +http://jonas.nitro.dk/git/quick-reference.html + GIT for those who are used to centralized SCMs: http://media.pragprog.com/titles/tsgit/chap-005-extract.html +================================================================ HOWTO =========================================================== + +Checking out the repository for editing under your username: +git clone http://[email protected]/scm/git/tde + Adding files: git add * -Committing changes: -git commit -a "Log message here" +Committing changes to your local copy: +git commit -a + +Pushing all committed changes in your local copy to the master server: +git push origin master ================================================================= NOTE ============================================================ GIT cannot store empty directories due to a design limitation. |