Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
__pycache__
.pytest_cache
2 changes: 2 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@

Ezra Nobrega <[email protected]>
Justin Majetich <[email protected]>
Abel Mulugeta <[email protected]>
Newton Sigei <[email protected]>
11 changes: 11 additions & 0 deletions commit.git
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash

if [ $# -eq 0 ]; then
echo "Error: No commit message provided."
echo "Usage: $0 <commit message>"
exit 1
fi

git add .
git commit -m "$*"
git push
Loading