forked from mirrors/thatmattlove-hyperglass
6 lines
142 B
Bash
Executable file
6 lines
142 B
Bash
Executable file
#!/bin/sh
|
|
|
|
git config --global user.email "travis@travis-ci.org"
|
|
git config --global user.name "Travis CI"
|
|
git checkout $TRAVIS_BRANCH
|
|
exit 0
|