Skip to content
This repository has been archived by the owner on Dec 11, 2020. It is now read-only.

Commit

Permalink
Merge pull request #193 from omkarprabhu-98/bash-omkarprabhu-98
Browse files Browse the repository at this point in the history
Bash script to add and commit files in git
  • Loading branch information
dcoy authored Oct 5, 2017
2 parents bfb475f + df4cc50 commit 76cdfa6
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions gitc.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/sh

# To adding and commiting files in git

git add .
read -p 'Commit Message: ' comMsg
git commit -m "$comMsg"

0 comments on commit 76cdfa6

Please sign in to comment.