-
Notifications
You must be signed in to change notification settings - Fork 2
/
README
51 lines (34 loc) · 1.3 KB
/
README
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
45
46
47
48
49
50
51
Agility Gitorial Patchset
=========================
This is [stacked git](http://www.procode.org/stgit/) patchset for
[agility-gitorial](http://github.com/bryanlarsen/agility-gitorial/tree/master).
Since agility-gitorial constantly rewrites its history, this becomes
our real working history.
To recreate the gitorial from this patchset:
mkdir agility-gitorial
cd agility-gitorial
git init
touch README
git add README
git commit --cleanup=verbatim -m ""
stg init
stg import -i -s ../series
You'll have to issue that last command repeatedly because stg import
chokes on empty patches.
Then load the plugins:
git submodule update --init
Start from the top of the tutorial:
stg pop -a
View the current stage of the tutorial with
stg show
And then switch to the next stage with
stg push
Navigate through the tutorial by using `stg push`, `stg pop` and `stg
goto`. Other useful commands are `stg help`, `stg series`, and `stg
edit`.
Once you have completed the gitorial, you can export any changes:
stg export -n -epatch -d ..
Please send your changes to [me](mailto:[email protected]) so I can
update the gitorial for everybody!
More tools that were used to develop this gitorial are [available from
github](http://github.com/bryanlarsen/gitorial-tools/tree/master)