Skip to content

Commit

Permalink
Script to commit on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
circular committed Oct 3, 2019
1 parent 794fc31 commit 367e6de
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions commit.sh
@@ -0,0 +1,13 @@
#!/bin/bash
git checkout HEAD~ -- lazpaint/release/bin/i18n/*.po
git add .
git status
echo "Type commit description (or press Enter to cancel):"
read commitdesc
if test -z "$commitdesc"
then
git reset --
else
git commit -m "$commitdesc"
fi
cd ..

0 comments on commit 367e6de

Please sign in to comment.