|
|
|
@ -1,3 +1,5 @@
|
|
|
|
|
============================================================ DOCUMENTATION ======================================================= |
|
|
|
|
|
|
|
|
|
GIT tutorial on kernel.org: |
|
|
|
|
http://www.kernel.org/pub/software/scm/git/docs/gittutorial.html |
|
|
|
|
|
|
|
|
@ -28,3 +30,15 @@ Therefore, this command should be run prior to any commits to ensure your empty
|
|
|
|
|
|
|
|
|
|
find . -type d -empty -exec touch {}/.gitignore \; |
|
|
|
|
|
|
|
|
|
================================================================ WORKFLOW ========================================================== |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
git clone http://your-username@scm.trinitydesktop.org/scm/git/tde |
|
|
|
|
|
|
|
|
|
<make your changes, test, etc> |
|
|
|
|
|
|
|
|
|
cd <repository checkout directory> |
|
|
|
|
find . -type d -empty -exec touch {}/.gitignore \; |
|
|
|
|
git add * |
|
|
|
|
git commit -a |
|
|
|
|
git push origin master |
|
|
|
|