mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-02-07 17:58:24 +00:00
12 lines
328 B
Bash
Executable file
12 lines
328 B
Bash
Executable file
#!/bin/sh
|
|
|
|
setup_git() {
|
|
git config --global user.email "travis@travis-ci.org"
|
|
git config --global user.name "Travis CI"
|
|
git add hyperglass/ *.py
|
|
git commit --message "Black Formatting - travis $TRAVIS_BUILD_NUMBER"
|
|
git add pylint.svg
|
|
git commit --message "Pylint Badge - travis $TRAVIS_BUILD_NUMBER"
|
|
}
|
|
|
|
setup_git
|