Skip to content

Instantly share code, notes, and snippets.

@bnestelroad
bnestelroad / git_workflow.sh
Last active August 12, 2017 21:07
Git workflow
# Automate the workflow of adding and commiting chunks of code to Github
for i in $(git status -s | awk '{print $2}');
do
echo `git add ./$i; git commit -m '$i'`;
done;
git push;