Last active
April 11, 2021 09:17
-
-
Save stchar/04b6397f4476c695b2eb94379a9a0dda to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias ..='cd ..' | |
alias ll='ls -Al' | |
# tree | |
alias tree2='tree -L 2' | |
# git-related | |
# Typos | |
alias hui='git' | |
alias gti='git' | |
alias igt='git' | |
alias gut='git' | |
# git config --global alias.bump "commit --amend --no-edit -a" | |
# git config --global alias.pf "push --force" | |
alias bump='git bump && git pf' | |
# cmake-related | |
alias cmakeconf='cmake -S . -B build' | |
alias cmakebuild='cmake --build build' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment