diff --git a/gitc.sh b/gitc.sh new file mode 100755 index 0000000..5526c30 --- /dev/null +++ b/gitc.sh @@ -0,0 +1,7 @@ +#!/bin/sh + +# To adding and commiting files in git + +git add . +read -p 'Commit Message: ' comMsg +git commit -m "$comMsg"