Created
December 29, 2016 18:51
-
-
Save daviddmr/229e8e6c4ae42ce3d2178d88025bd536 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
| # In the windows, create a file with name .bashrc in user home "C:/User/userName/ and include this script | |
| alias less='less -r' | |
| # --show-control-chars: help showing Korean or accented characters | |
| alias ls='ls -F --color --show-control-chars' | |
| alias ll='ls -l' | |
| alias gs='git status ' | |
| alias ga='git add ' | |
| alias gb='git branch ' | |
| alias gc='git commit' | |
| alias gd='git diff' | |
| alias go='git checkout ' | |
| alias gk='gitk --all&' | |
| alias gx='gitx --all' | |
| alias got='git ' | |
| alias get='git ' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment