]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - doc/rcs/gitmanual.mdwn
web commit by http://natalian.org/: writing a little tutorial about using git with...
[git.ikiwiki.info.git] / doc / rcs / gitmanual.mdwn
1 Main use case I am trying to accomplish: Edit wiki pages offline.
3 1. Imagine you're the administrator of the site and you want to checkout the wiki sources to give them some love while on a train journey.
4 2. Or you are writing a complex document and you want to simply use your favourite $EDITOR
5 3. Learn a little more about [git](http://git.or.cz/)
7 # Workflow
9 ## on webconverger.org hosted on si.dabase.com (hendry)
11 Wiki page created with [ikiwiki](http://ikiwiki.info). Example usb.mdwn [usb](http://webconverger.org/usb/)
13 ## on monty (my laptop)
15 I wonder why a "pull" doesn't just init a repo like a "svn co" does?
17     monty:~/git-testing% git-init
18     Initialized empty Git repository in .git/
20     monty:~/git-testing% git-pull ssh://si.dabase.com/home/hendry/wikiwc/.git/
21     warning: no common commits
22     remote: Generating pack...
23     remote: Done counting 746 objects.
24     remote: Deltifying 746 objects...
25     remote:  100% (746/746) done
26     Indexing 746 objects...
27     remote: Total 746 (delta 443), reused 723 (delta 431)
28      100% (746/746) done
29     Resolving 443 deltas...
30      100% (443/443) done
32     echo "blah" >> usb.mdwn
33     monty:~/git-testing% git-commit -a -m "added test"
34     Created commit d3507df: added test
35      1 files changed, 1 insertions(+), 0 deletions(-)
37     monty:~/git-testing% git-push ssh://si.dabase.com/home/hendry/wikiwc/.git/
38     updating 'refs/heads/master'
39       from 75a4a8e94e5fff2a4beced1574e772742d3f9847
40       to   d3507dfe19b469e61a728d1b0a833a5f480f5802
41     Generating pack...
42     Done counting 5 objects.
43     Result has 3 objects.
44     Deltifying 3 objects...
45      100% (3/3) done
46     Writing 3 objects...
47      100% (3/3) done
48     Total 3 (delta 2), reused 0 (delta 0)
49     refs/heads/master: 75a4a8e94e5fff2a4beced1574e772742d3f9847 -> d3507dfe19b469e61a728d1b0a833a5f480f5802
52 ## on si