Simplified porcelains?
Posted Aug 5, 2008 20:36 UTC (Tue) by
Sutoka (guest, #43890)
In reply to:
Simplified porcelains? by jwb
Parent article:
Git Magic
The tutorial I used to learn git was: http://www.kernel.org/pub/software/scm/git/docs/gittutorial.html
For a while it vanished from google so I had lost it until just now when I searched for it. To get git push working all I did was just followed the instructions on my Gitorious project page:
You can run "git push git@gitorious.org:[project]/mainline.git", or you can setup a remote by doing the following:
git remote add origin git@gitorious.org:[project]/mainline.git
# to push the master branch to the origin remote we added above:
git push origin master
# after that you can just do:
git push
Basically, it was extremely for me easy to setup, it might be harder if you're trying to setup the remote server yourself, but I tried that several times with SVN and CVS and never once got it to work (plus the tutorials I kept finding were having me install apache and a crap load of other services).
My only 'problem' with Git is that I didn't really know how to use Vim so I kinda had to learn that on the fly. IMO, Git is extremely easy to learn and takes very little effort to use (definitely more intuitive than Vim :P).
(
Log in to post comments)