summaryrefslogtreecommitdiffstats
path: root/README.GIT
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-07-10 15:10:56 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-07-10 15:10:56 -0500
commit9ea067f0d7c6af37fd0b713a658e3356f760a4d0 (patch)
treea15318c977d82d0d3896e4bf0328ca9890105bdc /README.GIT
downloadtde-9ea067f0d7c6af37fd0b713a658e3356f760a4d0.tar.gz
tde-9ea067f0d7c6af37fd0b713a658e3356f760a4d0.zip
Created initial directory structure
Diffstat (limited to 'README.GIT')
-rw-r--r--README.GIT19
1 files changed, 19 insertions, 0 deletions
diff --git a/README.GIT b/README.GIT
new file mode 100644
index 000000000..8fab8aabb
--- /dev/null
+++ b/README.GIT
@@ -0,0 +1,19 @@
+GIT tutorial on kernel.org:
+http://www.kernel.org/pub/software/scm/git/docs/gittutorial.html
+
+GIT for those who are used to centralized SCMs:
+http://media.pragprog.com/titles/tsgit/chap-005-extract.html
+
+Adding files:
+git add *
+
+Committing changes:
+git commit -a "Log message here"
+
+================================================================= NOTE ============================================================
+GIT cannot store empty directories due to a design limitation.
+
+Therefore, this command should be run prior to any commits to ensure your empty directories stick around:
+
+find . -type d -empty -exec touch {}/.gitignore \;
+