Difference: ProgrammingBookmarks (42 vs. 43)

Revision 4316 Mar 2011 - TobyCabot

Line: 1 to 1
 
META TOPICPARENT name="TechBookmarks"
Line: 10 to 10
  git is a distributed revision control system. http://git.or.cz/
Changed:
<
<
http://news.ycombinator.com/item?id=2179123 - excellent intro to version control and git
http://progit.org/book/ - git book (online and available in print)
http://www-cs-students.stanford.edu/~blynn/gitmagic/ - the best "gentle introduction" to git that I've found.
http://jointheconversation.org/2008/06/02/railsconf-git-talk/ - excellent introductory screencast. about an hour long, but well worth it
http://macournoyer.wordpress.com/2007/12/27/moron-no-more-i-can-git/ - a nice intro to using git-svn.
http://www.sanityinc.com/articles/partial-emacs-git-svn-mode - some tips for emacs and git-svn
http://www.newartisans.com/blog_files/git.from.bottom.up.php - git from the bottom up
http://www.eqqon.com/index.php/Collaborative_Github_Workflow

If you're trying to use a non-default ssh key with git (e.g. for github) then this will help: http://help.github.com/multiple-keys/

You can store your "dotfiles" in git, too, which is especially great now that we do so much work inside virtual machines. There seem to be two schools of thought:

I'm trying the first approach. It seems less complex.

Setting up a new machine looks like:

$ cd
$ git init .
$ git remote add caboteria ssh://user@host/path_to_repo/dotfiles.git
$ git fetch caboteria mitre:caboteria/mitre
$ git checkout -fb mitre caboteria/mitre

http://vcs-home.madduck.net/ - turns out there's a group of people that talk about how they've done this.

>
>
GitNotes
  CVS is the Concurrent Versions System, a tool for source code revision control. The CVS home page is at http://www.cvshome.org/ and the User's Guide (also called the "Cederqvist Manual" because it was written by a guy named Per Cederqvist) is at http://www.loria.fr/~molli/cvs/doc/cvs_toc.html. A book called "Open Source Development With CVS" is partially online. The parts that are online seem to overlap substantially with the Cederqvist book but might be useful: http://cvsbook.red-bean.com/cvsbook.htm
View topic | History: r54 < r53 < r52 < r51 | More topic actions...
Copyright © 2008-2024 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding The Caboteria? Send feedback