Changes for page Getting Started with Git
Last modified by Bastian Triller on 2013/05/21 17:24
From version 103.1
edited by Kieran Kelleher
on 2011/03/21 15:59
on 2011/03/21 15:59
Change comment:
There is no comment for this version
To version 102.1
edited by Kieran Kelleher
on 2011/03/21 16:01
on 2011/03/21 16:01
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -57,13 +57,16 @@ 57 57 # Assume you are currently on a working branch. Verify this and check for uncommitted changes. 58 58 git status 59 59 60 -# Either commit your local changes to your working branch using {{git add}} + {{git commit}}, or temporarily stash them using {{git stash}} 60 +# Either commit your local changes to your working branch 61 +# using 'git add' + 'git commit', or temporarily stash 62 +# them using 'git stash' 61 61 git stash 62 62 63 63 # Switch to master branch 64 64 git checkout master 65 65 66 -# Ensure there are no changes either from an svn perspective or a git perspective on the master branch. 68 +# Ensure there are no changes either from an svn perspective 69 +# or a git perspective on the master branch. 67 67 git status 68 68 svn status 69 69