Changes for page Getting Started with Git
Last modified by Bastian Triller on 2013/05/21 17:24
From version 132.1
edited by Kieran Kelleher
on 2011/03/21 15:08
on 2011/03/21 15:08
Change comment:
There is no comment for this version
To version 135.1
edited by Kieran Kelleher
on 2011/03/21 14:54
on 2011/03/21 14:54
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -6,13 +6,13 @@ 6 6 7 7 = Install Git = 8 8 9 -[[OS X dmg Installer >>http://code.google.com/p/git-osx-installer/]]9 +[[OS X dmg Installerhttp:code.google.compgit-osx-installer]] 10 10 11 11 = Git Goodies = 12 12 13 13 == GitX git GUI == 14 14 15 -GitX is an awesome FREE history viewer made for OS X. It is a better way to visualize your branch and commit history of your git repository. However, power users (aka "cool kids") will probably only use it for history viewing while they continue to use the terminal command line for checkouts, branching, staging, rebasing and commit ting.15 +GitX is an awesome FREE history viewer made for OS X. It is a better way to visualize your branch and commit history of your git repository. However, power users (aka "cool kids") will probably only use it for history viewing while they continue to use the terminal command line for checkouts, branching, staging, rebasing and commiting. 16 16 [[GitX Home Page>>http://gitx.frim.nl/]] 17 17 18 18 == Open in GitX == ... ... @@ -25,20 +25,3 @@ 25 25 [[Git Tower>>http://www.git-tower.com/]] 26 26 27 27 = Using git locally on a Subversion Working Copy = 28 - 29 -OK, so you are addicted to git, and now you have to work on a team project that is hosted in a remote subversion repository ... and it is making you depressed :-(. Well, you can use manage your local svn working copy using git and be happy again! 30 - 31 -Don't use the git-svn tool, just use the [[git+svn protocol>>http://www.lostechies.com/blogs/derickbailey/archive/2010/02/03/branch-per-feature-how-i-manage-subversion-with-git-branches.aspx]] instead. 32 - 33 -= I want to learn git before I switch from Subversion = 34 - 35 -(This kind of repeats some of the previous section, but that's on purpose so we can condition you brain to start using git right now ;-) ) 36 -Even while you are working with svn repositories, you can start learning and taking advantage of git right now by making your local svn working copy an actual local git repository. The idea is to use the appropriate ignore feature of each SCM system to ignore the hidden files of the other system. The concept is described here: 37 - 38 -[[**git+svn** Working Protocol>>http://www.lostechies.com/blogs/derickbailey/archive/2010/02/03/branch-per-feature-how-i-manage-subversion-with-git-branches.aspx]] 39 - 40 -When you first learn about git and you google "git svn" you will learn about a command line tool git-svn which works directly with remote svn repos, however my advice is don't use git-svn. Use the **git+svn** approach outlined in above blog post instead. 41 - 42 -Once you start using git, it becomes addictive ....... you can never go back ...... really, it's that good ...... and it is not hard. 43 - 44 -For Eclipse setup when using git locally on svn working copies, just check out the entire svn branch on the command line, then LINK (import no copy) the projects you want in your workspace using the Subclipse import tool, and just do your git operations (status, staging, commit, diff, branching, checkouts, rebase and merge using the terminal). git on the terminal is efficient... honest.