Last active
January 28, 2025 09:12
-
-
Save ARK4579/55fc2da107481e9d5f1237f33bf1ac67 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
# Bash | |
alias src="source ~/.bashrc" | |
alias vrc="vim ~/.bashrc" | |
alias c="clear" | |
alias ll="ls -l" | |
# Python env | |
alias act="source env/bin/activate" | |
alias dact="deactivate" | |
# tmux | |
alias t1="tmux new -A -s t1" | |
alias t2="tmux new -A -s t2" | |
alias t3="tmux new -A -s t3" | |
alias t4="tmux new -A -s t4" | |
alias t5="tmux new -A -s t5" | |
alias t6="tmux new -A -s t6" | |
alias vtc="vim ~/.tmux.conf" | |
# git | |
alias gst="git status" | |
alias gpl="git pull" | |
alias gph="git push" | |
alias gdf="git diff" | |
alias gad="git add" | |
alias gcm="git commit -m $@" | |
alias gcmu="git commit -m 'updates'" | |
alias gck="git checkout" | |
alias gckm="git checkout master" | |
alias gbh="git branch" | |
alias gckb="git checkout -b" | |
alias gbhd="git branch -d" | |
alias gada="git add ." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment