Changes for page Getting Started with Git
Last modified by Bastian Triller on 2013/05/21 17:24
From version 129.1
edited by Kieran Kelleher
on 2011/03/21 15:14
on 2011/03/21 15:14
Change comment:
There is no comment for this version
To version 126.1
edited by Kieran Kelleher
on 2011/03/21 15:30
on 2011/03/21 15:30
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -10,12 +10,12 @@ 10 10 11 11 = Git Goodies = 12 12 13 -== GitX git GUI == 13 +=== GitX git GUI === 14 14 15 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 committing. 16 16 [[GitX Home Page>>http://gitx.frim.nl/]] 17 17 18 -== Open in GitX == 18 +=== Open in GitX === 19 19 20 20 [[Open In GitX Finder Droplet>>http://code.google.com/p/git-osx-installer/wiki/OpenInGitX]] 21 21 ... ... @@ -49,3 +49,4 @@ 49 49 * Switch to master branch to update from svn and commit those svn updates on the master branch. 50 50 * Merge your working branch(es) with or rebase your working branch(es) from the master and just keep on working. 51 51 * Switch to master branch before synchronizing with remote svn repo. 52 +* You can use ##git stash## to temporarily put aside your uncommitted changes before doing an svn update. Then use ##git stash pop## to replay those uncommitted changes onto the working copy.