Skip to content
This repository has been archived by the owner on Mar 30, 2019. It is now read-only.

Commit

Permalink
[Build] Use merge instead of rebase from master to master_integration
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandre Mutel committed Jul 25, 2013
1 parent 3ed6e8e commit 52f096e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions SharpDX.build
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,10 @@
<Exec Command='$(GitExe) checkout --merge "master"'/>
<Exec Command='$(GitExe) pull --rebase origin'/>

<!-- Rebase master_integration on master -->
<!-- Merge master into master_integration -->
<Exec Command='$(GitExe) checkout --merge "master_integration"'/>
<Exec Command='$(GitExe) rebase "master"'/>
<Exec Command='$(GitExe) pull --rebase origin'/>
<Exec Command='$(GitExe) merge "master"'/>

<!-- Merge master_integration into master -->
<Exec Command='$(GitExe) checkout --merge "master"'/>
Expand Down

0 comments on commit 52f096e

Please sign in to comment.