|  |  | @@ -7,6 +7,7 @@ alias 'viewalias'='view ~/.bash_aliases' | 
			
		
	
		
		
			
				
					
					|  |  |  | alias 'refreshalias'='source ~/.bash_aliases' |  |  |  | alias 'refreshalias'='source ~/.bash_aliases' | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | # SSH management |  |  |  | # SSH management | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | alias 'fssh'='ssh-add && ssh -A' | 
			
		
	
		
		
			
				
					
					|  |  |  | alias 'editssh'='vim ~/.ssh/config' |  |  |  | alias 'editssh'='vim ~/.ssh/config' | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | # Edit hosts file |  |  |  | # Edit hosts file | 
			
		
	
	
		
		
			
				
					
					|  |  | @@ -25,10 +26,14 @@ alias 'restartgui'='sudo service sddm restart' | 
			
		
	
		
		
			
				
					
					|  |  |  | alias 'reboot'='sudo reboot' |  |  |  | alias 'reboot'='sudo reboot' | 
			
		
	
		
		
			
				
					
					|  |  |  | alias 'shutdown'='sudo shutdown' |  |  |  | alias 'shutdown'='sudo shutdown' | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | # Clean up df output | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | alias df='df -x squashfs -x tmpfs -x devtmpfs' | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | # Vagrant shortcuts |  |  |  | # 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 'vpro'='vagrant provision' | 
			
		
	
		
		
			
				
					
					|  |  |  | alias 'vssh'='ssh-add && vagrant ssh' |  |  |  | alias 'vssh'='ssh-add && vagrant ssh' | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | alias 'vsshr'='ssh-add && vagrant ssh -c "sudo -i"' | 
			
		
	
		
		
			
				
					
					|  |  |  | alias 'vup'='vagrant up' |  |  |  | alias 'vup'='vagrant up' | 
			
		
	
		
		
			
				
					
					|  |  |  | alias 'vhalt'='vagrant halt' |  |  |  | alias 'vhalt'='vagrant halt' | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
	
		
		
			
				
					
					|  |  | @@ -51,8 +56,14 @@ alias 'log'='git log' | 
			
		
	
		
		
			
				
					
					|  |  |  | alias 'logsig'='git log --show-signature' |  |  |  | alias 'logsig'='git log --show-signature' | 
			
		
	
		
		
			
				
					
					|  |  |  | alias 'checkout'='git checkout' |  |  |  | alias 'checkout'='git checkout' | 
			
		
	
		
		
			
				
					
					|  |  |  | alias 'commit'='git commit -S' |  |  |  | alias 'commit'='git commit -S' | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | alias 'tcommit'='git commit -m "testing"' | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | alias 'tamend'='git commit --amend --no-edit --date "`date -R`"' | 
			
		
	
		
		
			
				
					
					|  |  |  | alias 'amend'='git commit -S --amend' |  |  |  | alias 'amend'='git commit -S --amend' | 
			
		
	
		
		
			
				
					
					|  |  |  | alias 'amendnew'='git commit -S --amend --date "`date -R`"' |  |  |  | alias 'amendnew'='git commit -S --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 'fetch'='git fetch' | 
			
		
	
		
		
			
				
					
					|  |  |  | alias 'stash'='git stash' |  |  |  | alias 'stash'='git stash' | 
			
		
	
		
		
			
				
					
					|  |  |  | alias 'resetb'='git reset --hard @{u}' |  |  |  | alias 'resetb'='git reset --hard @{u}' | 
			
		
	
	
		
		
			
				
					
					|  |  |   |