17 lines
246 B
Bash
Executable File
17 lines
246 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# env |grep kol_env
|
|
# if [ $? -ne 0 ]; then
|
|
# exit 0
|
|
# fi
|
|
|
|
# git branch|grep -q "* dev"
|
|
# if [ $? -ne 0 ]; then
|
|
# echo 'not dev branch, exit'
|
|
# exit 0
|
|
# fi
|
|
|
|
# echo 'no sync protocol to svn'
|
|
|
|
git branch|grep -q "* master"
|