A simple guide for getting started with git
rogerdudler.github.com
A simple guide for getting started with git
1–10 of 132 posts
Re: A simple guide for getting started with git
#2Re: A simple guide for getting started with git
#3How about adding Linux install instructions? Something like,
apt-get install git
for Debian based distros.Re: A simple guide for getting started with git
#4I got stuck on the setup stage originally. Its not idiot proof enough - like everything to do with *nix and buddies.
Re: A simple guide for getting started with git
#5There exists TortoiseGit:
http://code.google.com/p/tortoisegit/Re: A simple guide for getting started with git
#6Re: A simple guide for getting started with git
#7The tutorial does not mention a Windows GUI for git. There exists TortoiseGit: http://code.google.com/p/tortoisegit/
Re: A simple guide for getting started with git
#8One thing that is missing is how to revert your working directory back to a tagged revision. Is that done with checkout?
git checkout tag-name
Tags are just a fancy label pointing to a commit so you can use them anywhere you'd use a sha1 or branch name.Re: A simple guide for getting started with git
#9One thing that is missing is how to revert your working directory back to a tagged revision. Is that done with checkout?
Moving between refs is almost always done with checkout git checkout tag-name Tags are just a fancy label pointing to a commit so you can use them anywhere you'd use a sha1 or branch name.