Skip to content

Commit

Permalink
[Truffle] Add tool to keep some files on each branch separate.
Browse files Browse the repository at this point in the history
  • Loading branch information
eregon committed Sep 27, 2016
1 parent 7789b7c commit 39c79f3
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tool/truffle/merge.sh
@@ -0,0 +1,11 @@
#!/bin/sh

git merge --no-commit origin/master

# git reset appveyor.yml
git rm -f appveyor.yml

for f in .travis.yml ci.hocon; do
git reset $f
git checkout $f
done

0 comments on commit 39c79f3

Please sign in to comment.