Changeset 8901
- Timestamp:
- 02/19/08 23:19:53 (5 months ago)
- Files:
-
- tools/capistrano/CHANGELOG (modified) (1 diff)
- tools/capistrano/lib/capistrano/recipes/deploy/scm/git.rb (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
tools/capistrano/CHANGELOG
r8761 r8901 1 1 *SVN* 2 3 * Use checkout instead of merge for git SCM [nuttycom] 2 4 3 5 * Fix typo in Subversion SCM module, encountered when an update fails [kemiller] tools/capistrano/lib/capistrano/recipes/deploy/scm/git.rb
r8755 r8901 120 120 121 121 execute << "cd #{destination}" 122 execute << "#{git} checkout -b deploy#{branch}"122 execute << "#{git} checkout #{branch}" 123 123 if configuration[:git_enable_submodules] 124 124 execute << "#{git} submodule init" … … 137 137 138 138 if head == 'HEAD' 139 execute << "#{git} mergeorigin/HEAD"139 execute << "#{git} checkout origin/HEAD" 140 140 else 141 execute << "#{git} merge#{head}"141 execute << "#{git} checkout #{head}" 142 142 end 143 143