Browse Source

Add git script

pull/6/head
Jake Zaia 5 years ago
parent
commit
9050f39ede
1 changed files with 10 additions and 0 deletions
  1. +10
    -0
      scripts/gitFlow.sh

+ 10
- 0
scripts/gitFlow.sh View File

@ -0,0 +1,10 @@
#! /usr/bin/bash
#Created by Jake Zaia
#Takes in one argument, a commit message, and handles the entire git workflow.
git pull;
git add .;
git commit -am "$1";
git push;

Loading…
Cancel
Save