Last active
July 4, 2018 13:09
-
-
Save nicothin/97cd26f0803d7b5eee4ea3e16061f19d 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
# SSH_ENV=$HOME/.ssh/environment | |
#! /bin/bash | |
eval `ssh-agent -s` | |
ssh-add | |
alias ls='ls -hF -1 --color=tty --sort=extension --show-control-chars' | |
alias cls='clear' | |
alias gl='git log --pretty=format:"%h %ad | %s%d [%an]" --graph --date=short --max-count=40 $*' | |
alias gs='git status' | |
alias ga='git add .' | |
alias gco='git commit -m $*' | |
alias gcom='git commit -a -m $*' | |
alias push='git push' | |
alias pull='git pull' | |
alias pro='cd /d/projects' | |
alias i='npm i $*' | |
alias s='npm start $*' | |
alias r='npm run $*' | |
alias вжух='git push -u origin master && npm run deploy' | |
alias y='yarn $*' | |
alias t='tree --dirsfirst -C -I node_modules $*' | |
# ПРОЕКТЫ | |
# alias p8='pro && cd p8nt_adsoft_js' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment