Compare commits
5 Commits
4a83afcc39
...
58b60cb5eb
Author | SHA1 | Date | |
---|---|---|---|
58b60cb5eb | |||
c7076e1064 | |||
ca34e022b5 | |||
8cc7ffe5ce | |||
7b771ea45b |
@ -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'
|
||||
|
||||
@ -51,8 +56,14 @@ alias 'log'='git log'
|
||||
alias 'logsig'='git log --show-signature'
|
||||
alias 'checkout'='git checkout'
|
||||
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 '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 'stash'='git stash'
|
||||
alias 'resetb'='git reset --hard @{u}'
|
||||
|
@ -3,3 +3,5 @@
|
||||
|
||||
[include]
|
||||
path = ~/.gitconfig_other
|
||||
[init]
|
||||
defaultBranch = main
|
||||
|
Loading…
Reference in New Issue
Block a user