1
0
Fork 0

Mettre à jour 'mybashrc'

This commit is contained in:
virtubox 2018-09-02 22:50:10 +00:00
parent 4ff9b870e1
commit 1dcde6f006
1 changed files with 6 additions and 4 deletions

View File

@ -3,17 +3,20 @@ transfer_vtbox_net() {
}
alias transfer=transfer_vtbox_net
alias cheat='cht.sh'
alias pull='git pull origin master'
alias pull='git pull'
git_commit() {
git add .
git commit -m "autocommit on $date"
git commit -m "$1"
}
git_push() {
git fetch
git push
}
alias commit=git_commit
alias push=git_push
compress_pigz() {
tar -I pigz -cvf $1.tar.gz $1
}
@ -22,8 +25,7 @@ decompress_pigz() {
tar -I pigz -xvf $1
}
alias commit=git_commit
alias push=git_push
alias lh="stat -c '%A %a %n'"
alias wp='wp --allow-root'