mirror of
https://github.com/marcin-szczepanski/jFuzzyLogic.git
synced 2024-12-18 16:35:27 +01:00
16 lines
165 B
Bash
Executable File
16 lines
165 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# ./scripts/clean.sh
|
|
|
|
comment="$1"
|
|
|
|
if [ -z "$comment" ]
|
|
then
|
|
comment="Project updated"
|
|
fi
|
|
|
|
git add -A .
|
|
git commit -a -m "$comment"
|
|
git push origin
|
|
|