Last active
July 23, 2020 16:02
-
-
Save nicothin/2a05b0dad3624f05d58292a856ec55ea 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 ls='ls -cvA --block-size=K --group-directories-first -1 --color=always' | |
alias gl='git log --pretty=format:"%h %C(magenta)%ad | %C(white)%s%d %C(magenta)[%an]" --date=short --graph --max-count=40 $*' | |
alias gs='git status' | |
alias ga='git add .' | |
alias gco='git commit -m $*' | |
alias push='git push' | |
alias pull='git pull' | |
alias pro='cd /mnt/d/projects' # ЗАМЕНИТЕ на путь к вашей директории проектов! | |
alias i='npm i $*' | |
alias s='npm start $*' | |
alias r='npm run $*' | |
alias subl='subl.exe $*' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment