Added git aliases and a few others

This commit is contained in:
Kris Lamoureux 2019-10-16 22:41:30 -04:00
parent 84855e86af
commit 4c7394e816
Signed by: kris
GPG Key ID: 3EDA9C3441EDA925

View File

@ -1,9 +1,12 @@
# Local system administration
alias 'editalias'='vim ~/.bash_aliases && . ~/.bash_aliases'
alias 'viewalias'='view ~/.bash_aliases'
alias 'editssh'='vim ~/.ssh/config'
alias 'upgrade'='sudo apt update && sudo apt upgrade'
alias 'install'='sudo apt update && sudo apt install'
alias 'restartgui'='sudo service sddm restart'
alias 'reboot'='sudo reboot'
alias 'shutdown'='sudo shutdown'
# Vagrant shortcuts
alias 'vdup'='vagrant destroy -f && vagrant up'
@ -16,9 +19,17 @@ alias 'sw'='cd /home/$USER/software && clear'
# Git shortcuts
alias 'gad'='git add . && git diff --cached'
alias 'gdiff'='git diff'
alias 'status'='git status'
alias 'pull'='git pull'
alias 'branch'='git branch -a'
alias 'log'='git log'
alias 'checkout'='git checkout'
alias 'commit'='git commit -S'
alias 'amend'='git commit -S --amend'
# Color shift
alias 'night'='redshift -O 2500'
alias 'night'='redshift -P -O 2500'
alias 'day'='redshift -x'
# SOCKS proxy over SSH