Compare commits

...

2 Commits

Author SHA1 Message Date
Jan Jastrow 2d298d20d7 Add git aliases (lazy) 2022-09-07 23:47:58 +02:00
Jan Jastrow 3042c17dd3 Add zsh-reload alias 2022-09-07 23:11:45 +02:00
1 changed files with 9 additions and 0 deletions

View File

@ -70,6 +70,14 @@ if test -x "/Applications/Firefox.app/Contents/MacOS/firefox-bin"; then
fi
# git
alias gadd='git add'
alias gclone='git clone'
alias gpull='git pull'
alias gpush='git push'
alias gcommit='git commit -m'
# linux stuff
alias journ='journalctl -xfe -t'
@ -81,3 +89,4 @@ alias makeitmine='sudo chown -R $(whoami) ./'
alias dotf='cd ~/.dotfiles'
alias dotfu='cd ~/.dotfiles; git pull; cd -; source ~/.zshrc'
alias reload-zsh='source ~/.zshrc'