From e11c8eac5d3c78984eaeab1ea89b41b24c5a2ba9 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 10 Jul 2011 15:10:56 -0500 Subject: Created initial directory structure --- README.GIT | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 README.GIT diff --git a/README.GIT b/README.GIT new file mode 100644 index 0000000..8fab8aa --- /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 \; + -- cgit v1.2.3