X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/38077033c11977a0c8f5a10103b394c5fbfd88d9..4a55e6aa38bb8a420cff0a08241fbedbb411a76c:/doc/rcs/gitmanual.mdwn diff --git a/doc/rcs/gitmanual.mdwn b/doc/rcs/gitmanual.mdwn index b25b6b98a..b40ac0034 100644 --- a/doc/rcs/gitmanual.mdwn +++ b/doc/rcs/gitmanual.mdwn @@ -17,6 +17,8 @@ I wonder why a "pull" doesn't just init a repo like a "svn co" does? monty:~/git-testing% git-init Initialized empty Git repository in .git/ +You might want to set some config variables like your email as this [tutorial](http://www.kernel.org/pub/software/scm/git/docs/tutorial.html) describes. + monty:~/git-testing% git-pull ssh://si.dabase.com/home/hendry/wikiwc/.git/ warning: no common commits remote: Generating pack... @@ -72,6 +74,7 @@ Great, we see the usb.mdwn file has been modified. Now we need to check it out t * this master/origin stuff * why do I have to explicitly say the filename "usb.mdwn" for it to be updated? +* why do I have to explicitly have to write the url if I am going a git-pull again? I know I can alias it, but why can't it just pull from the last source? # Ack