Changes between Version 45 and Version 46 of SourceCodeGit
- Timestamp:
- Nov 5, 2014, 6:47:38 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SourceCodeGit
v45 v46 109 109 Run `git remote show origin` to list the remote branches. 110 110 111 As you cloned the Git repository,a 'local master branch' was created.112 This initially corresponds tothe 'remote master branch', but once you start editing files,111 When you cloned the Git repository a 'local master branch' was created. 112 This initially matches the 'remote master branch', but once you start editing files, 113 113 it will of course deviate from it. 114 115 114 You can create local branches and tags (both invisible to anyone but yourself). 116 115 You can check out a specific 'remote tag' to compile, … … 127 126 about generating pretty pictures of the same. 128 127 129 For the impatient living on Unix, follow Slipp D. Thompson's ideadand edit (or create)128 For the impatient living on Unix, you can follow Slipp D. Thompson's idea and edit (or create) 130 129 your '~/.gitconfig' file, adding the following command aliases: 131 130 … … 143 142 }}} 144 143 145 inside 'boinc' for a quick text-only history dump:144 inside the 'boinc' directory for a quick text-only history dump, which will look something like this: 146 145 147 146 {{{ … … 165 164 166 165 167 To go back to the remote master branch after you modified some files in a hasty fashion: 166 === Examples using tags and branches === 167 168 To revert back to the remote master branch after you have modified some files in a too hasty fashion: 168 169 {{{ 169 170 git checkout master