This website works better with JavaScript.
Home
Explore
Help
Sign In
jrtechs
/
jrtechs-bash_manager
mirror of
https://github.com/jrtechs/bash_manager.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
Add git script
pull/6/head
Jake Zaia
6 years ago
parent
a4f8b3f2d5
commit
9050f39ede
1 changed files
with
10 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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
;
Write
Preview
Loading…
Cancel
Save