]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - doc/rcs/gitmanual.mdwn
web commit by http://natalian.org/
[git.ikiwiki.info.git] / doc / rcs / gitmanual.mdwn
1 # on webconverger.org hosted on si.dabase.com (hendry)
3 Wiki page created with [ikiwiki](http://ikiwiki.info). Example usb.mdwn [[usb]]
5 Use case I am trying to accomplish: Edit wiki pages offline.
7 # on monty (my laptop)
9 I wonder why a "pull" doesn't just init a repo like a "svn co" does?
11     monty:~/git-testing% git-init
12     Initialized empty Git repository in .git/
14     monty:~/git-testing% git-pull ssh://si.dabase.com/home/hendry/wikiwc/.git/
15     warning: no common commits
16     remote: Generating pack...
17     remote: Done counting 746 objects.
18     remote: Deltifying 746 objects...
19     remote:  100% (746/746) done
20     Indexing 746 objects...
21     remote: Total 746 (delta 443), reused 723 (delta 431)
22      100% (746/746) done
23     Resolving 443 deltas...
24      100% (443/443) done
26     echo "blah" >> usb.mdwn
27     monty:~/git-testing% git-commit -a -m "added test"
28     Created commit d3507df: added test
29      1 files changed, 1 insertions(+), 0 deletions(-)
31     monty:~/git-testing% git-push ssh://si.dabase.com/home/hendry/wikiwc/.git/
32     updating 'refs/heads/master'
33       from 75a4a8e94e5fff2a4beced1574e772742d3f9847
34       to   d3507dfe19b469e61a728d1b0a833a5f480f5802
35     Generating pack...
36     Done counting 5 objects.
37     Result has 3 objects.
38     Deltifying 3 objects...
39      100% (3/3) done
40     Writing 3 objects...
41      100% (3/3) done
42     Total 3 (delta 2), reused 0 (delta 0)
43     refs/heads/master: 75a4a8e94e5fff2a4beced1574e772742d3f9847 -> d3507dfe19b469e61a728d1b0a833a5f480f5802
46 # on si