|  |  |  | @@ -7,6 +7,7 @@ alias 'viewalias'='view ~/.bash_aliases' | 
		
	
		
			
				|  |  |  |  | alias 'refreshalias'='source ~/.bash_aliases' | 
		
	
		
			
				|  |  |  |  |  | 
		
	
		
			
				|  |  |  |  | # SSH management | 
		
	
		
			
				|  |  |  |  | alias 'fssh'='ssh-add && ssh -A' | 
		
	
		
			
				|  |  |  |  | alias 'editssh'='vim ~/.ssh/config' | 
		
	
		
			
				|  |  |  |  |  | 
		
	
		
			
				|  |  |  |  | # Edit hosts file | 
		
	
	
		
			
				
					
					|  |  |  | @@ -25,10 +26,14 @@ alias 'restartgui'='sudo service sddm restart' | 
		
	
		
			
				|  |  |  |  | alias 'reboot'='sudo reboot' | 
		
	
		
			
				|  |  |  |  | alias 'shutdown'='sudo shutdown' | 
		
	
		
			
				|  |  |  |  |  | 
		
	
		
			
				|  |  |  |  | # Clean up df output | 
		
	
		
			
				|  |  |  |  | alias df='df -x squashfs -x tmpfs -x devtmpfs' | 
		
	
		
			
				|  |  |  |  |  | 
		
	
		
			
				|  |  |  |  | # Vagrant shortcuts | 
		
	
		
			
				|  |  |  |  | alias 'vdup'='vagrant destroy -f && vagrant up' | 
		
	
		
			
				|  |  |  |  | alias 'vdup'='vagrant destroy -f && vagrant up --no-destroy-on-error' | 
		
	
		
			
				|  |  |  |  | alias 'vpro'='vagrant provision' | 
		
	
		
			
				|  |  |  |  | alias 'vssh'='ssh-add && vagrant ssh' | 
		
	
		
			
				|  |  |  |  | alias 'vsshr'='ssh-add && vagrant ssh -c "sudo -i"' | 
		
	
		
			
				|  |  |  |  | alias 'vup'='vagrant up' | 
		
	
		
			
				|  |  |  |  | alias 'vhalt'='vagrant halt' | 
		
	
		
			
				|  |  |  |  |  | 
		
	
	
		
			
				
					
					|  |  |  | @@ -48,11 +53,18 @@ alias 'list'='git branch -a' | 
		
	
		
			
				|  |  |  |  | alias 'unstage'='git reset HEAD' | 
		
	
		
			
				|  |  |  |  | alias 'discard'='git checkout --' | 
		
	
		
			
				|  |  |  |  | alias 'log'='git log' | 
		
	
		
			
				|  |  |  |  | alias 'oneline'='git log --oneline' | 
		
	
		
			
				|  |  |  |  | alias 'logsig'='git log --show-signature' | 
		
	
		
			
				|  |  |  |  | alias 'checkout'='git checkout' | 
		
	
		
			
				|  |  |  |  | alias 'commit'='git commit -S' | 
		
	
		
			
				|  |  |  |  | alias 'amend'='git commit -S --amend' | 
		
	
		
			
				|  |  |  |  | alias 'amendnew'='git commit -S --amend --date "`date -R`"' | 
		
	
		
			
				|  |  |  |  | alias 'commit'='git commit' | 
		
	
		
			
				|  |  |  |  | alias 'tcommit'='git commit -m "testing"' | 
		
	
		
			
				|  |  |  |  | alias 'tamend'='git commit --amend --no-edit --date "`date -R`"' | 
		
	
		
			
				|  |  |  |  | alias 'amend'='git commit --amend' | 
		
	
		
			
				|  |  |  |  | alias 'amendnew'='git commit --amend --date "`date -R`"' | 
		
	
		
			
				|  |  |  |  | alias 'giturl'='git remote set-url' | 
		
	
		
			
				|  |  |  |  | alias 'setorigin'='git remote set-url origin' | 
		
	
		
			
				|  |  |  |  | alias 'origin'='git remote show origin' | 
		
	
		
			
				|  |  |  |  | alias 'remote'='git remote' | 
		
	
		
			
				|  |  |  |  | alias 'fetch'='git fetch' | 
		
	
		
			
				|  |  |  |  | alias 'stash'='git stash' | 
		
	
		
			
				|  |  |  |  | alias 'resetb'='git reset --hard @{u}' | 
		
	
	
		
			
				
					
					|  |  |  |   |