Skip to content

Commit

Permalink
Update content
Browse files Browse the repository at this point in the history
  • Loading branch information
hailiang-wang committed Jun 19, 2024
1 parent 197298c commit 985db79
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions bin/commit.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#! /bin/bash
###########################################
#
###########################################

# constants
baseDir=$(cd -P `dirname "$0"`;pwd)
export PYTHONUNBUFFERED=1
export PATH=/opt/miniconda3/envs/venv-py3/bin:$PATH

# functions

# main
[ -z "${BASH_SOURCE[0]}" -o "${BASH_SOURCE[0]}" = "$0" ] || return

set -x
cd $baseDir/..
git add --all
msg="Update content"

if [ ! "$1" == '' ]; then
msg="$*"
fi

git commit -m "$msg"
git push origin master
git push github master

0 comments on commit 985db79

Please sign in to comment.