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

Bash script to add and commit files in git #193

Merged
merged 1 commit into from
Oct 5, 2017
Merged
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
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"