diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-07-10 15:13:19 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-12-08 14:11:57 -0600 |
commit | 2ad7c092f70f97bd8e1e2a86e1e2e0adc13c9d24 (patch) | |
tree | 57d5808956f832c4df050d8d559566b904d39a4a /README.GIT | |
parent | e11c8eac5d3c78984eaeab1ea89b41b24c5a2ba9 (diff) | |
download | scripts-2ad7c092f70f97bd8e1e2a86e1e2e0adc13c9d24.tar.gz scripts-2ad7c092f70f97bd8e1e2a86e1e2e0adc13c9d24.zip |
Updated GIT readme file
Diffstat (limited to 'README.GIT')
-rw-r--r-- | README.GIT | 15 |
1 files changed, 13 insertions, 2 deletions
@@ -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://your-username@scm.trinitydesktop.org/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. |