blob: 820c6242bcd8663fdb9011f7678d8b2015e5ef29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
============================================================ DOCUMENTATION =======================================================
GIT tutorial on github:
http://schacon.github.com/git/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 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.
Therefore, this command should be run prior to any commits to ensure your empty directories stick around:
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
|