(refactor): new aliases and cleanup
This commit is contained in:
parent
cfacc61e70
commit
8cdf8b132f
1 changed files with 4 additions and 1 deletions
|
|
@ -1,4 +1,3 @@
|
|||
# A collection of useful aliases to make terminal life bliss
|
||||
# Unix
|
||||
alias ll="ls -la"
|
||||
alias ln="ln -v"
|
||||
|
|
@ -27,6 +26,10 @@ alias gra="git remote add origin "
|
|||
alias clonerepo="git fetch --all && git pull --all && git clone-branches"
|
||||
|
||||
# Python
|
||||
alias initvenv='python3 -m venv vemv'
|
||||
alias startvenv='source venv/bin/activate'
|
||||
alias stopvenv='deactivate'
|
||||
alias pyinstall='python3 -m pip install -r requirements.txt'
|
||||
alias py='python3'
|
||||
alias py3='python3'
|
||||
alias python='python3'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue