Pasted as Plain Text |
Description: No description |
URL: https://lumen.esilibrary.com/p/OWhPwl43.html |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
# git-related contents of miker's ~/.bash_aliases alias branch='git branch' alias ci='git commit' alias co='git checkout' alias dif='git diff' alias fetch='git fetch' alias lg='git log --pretty=oneline' alias pick='git cherry-pick' alias pull='git pull' alias push='git push' alias stash='git stash' alias status='git status' alias wt='git worktree' |