This commit is contained in:
assaf79 2020-06-13 19:21:52 +03:00
parent 2f264866bb
commit c871559a78
4 changed files with 0 additions and 40 deletions

View File

@ -1,15 +0,0 @@
#!/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

14
git/tag
View File

@ -1,14 +0,0 @@
#!/bin/sh -e
ver="$1"
# Parse command line parameter
if [ -z "$ver" ]
then
echo Argument version number missing
exit 1
fi
# Tag and push tags
git tag -a "v$ver" -m "Release v$ver"
git push origin "v$ver"

View File

@ -1,4 +0,0 @@
#!/bin/sh -e
git pull

View File

@ -1,7 +0,0 @@
#!/bin/sh -e
git fetch --all
git reset --hard origin/master
git pull