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 aliases
pull/6/head
Jake Zaia
6 years ago
parent
d1307573ea
commit
278d1373d9
2 changed files
with
21 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+9
-0
scripts/gitAliases.sh
+12
-0
scripts/gitAliases.sh~
+ 9
- 0
scripts/gitAliases.sh
View File
@ -0,0 +1,9 @@
#Created by Jake Zaia
#The contents of this file should be copied to ~/.bash_aliases
#Do NOT run this file as a script, it will do nothing.
alias
aa
=
'git add .'
alias
pull
=
'git pull && ls'
alias
push
=
'git push'
alias
commit
=
'git commit -am '
+ 12
- 0
scripts/gitAliases.sh~
View File
@ -0,0 +1,12 @@
#! /usr/bin/bash
#Created by Jake Zaia
#The contents of this file should be copied to ~/.bash_aliases
#One could also use this file, but theabove method is preferred.
alias aa='git add .'
alias pull='git pull && ls'
alias push='git push'
alias commit='git commit -am '
alias hi='echo potato'
Write
Preview
Loading…
Cancel
Save