1
0
Fork 0

Mettre à jour 'mybashrc'

This commit is contained in:
virtubox 2018-08-27 17:08:06 +00:00
parent 5ff1c8f98e
commit 3516e8686b
1 changed files with 14 additions and 2 deletions

View File

@ -4,9 +4,21 @@ transfer() {
alias transfer=transfer
alias cheat='cht.sh'
alias pull='git pull origin master'
alias commit='git add . && git commit -m "autocommit on $date"'
git_commit() {
git add .
git commit -m "autocommit on $date"
}
git_push() {
git fetch
git push
}
alias commit=git_commit
alias push=git_push
alias lh="stat -c '%A %a %n'"
alias push='git push'
alias wp='wp --allow-root'
alias ll='ls -alhF'