Brief docs.
[git-central.git] / scripts / README.markdown
1
2 gc-add
3 ======
4
5 `gc-add <path>...`
6
7 * If no arguments, adds all new, adds all changed, removes all removed
8 * If arguments, passes through to `git add`
9
10 gc-checkout
11 ===========
12
13 `gc-checkout <branch>`
14
15 * If `branch` already exists locally, check it out
16 * If `branch` already exists remotely, check it out
17 * If `branch` is new, create it locally and remotely
18
19 gc-commit
20 =========
21
22 `gc-commit`
23
24 * Passes through to `git commit`
25
26 gc-diff
27 =======
28
29 `gc-diff`
30
31 * Passes through to `git diff`
32
33 gc-pull
34 =======
35
36 `gc-pull`
37
38 * Passes through to `git pull` but with `--rebase` flag
39
40 gc-push
41 =======
42
43 `gc-push`
44
45 * Pushes only the current branch to `origin`
46
47 gc-remerge
48 ==========
49
50 * Work in progress, not done
51
52 gc-rm
53 =====
54
55 `gc-rm`
56
57 * Passes through to `git rm`
58
59 gc-status
60 =========
61
62 `gc-status`
63
64 * Passes through to `git status`
65
66