fix(shell): re alias gs to gss
Now the `gs` command has be aliased to a git status alias. The original `gs` would open up ghost script and I would open it everyday trying to run git status.
This commit is contained in:
parent
e5655ed216
commit
385829ea8b
1 changed files with 1 additions and 0 deletions
|
|
@ -4,6 +4,7 @@ alias gcon="git diff --name-only --diff-filter=U"
|
||||||
alias gml="git merge --log"
|
alias gml="git merge --log"
|
||||||
alias gl="git --no-pager log --oneline --reverse --max-count=40"
|
alias gl="git --no-pager log --oneline --reverse --max-count=40"
|
||||||
alias gap="git add -p"
|
alias gap="git add -p"
|
||||||
|
alias gs="gss"
|
||||||
|
|
||||||
function git_get_fetch_url() {
|
function git_get_fetch_url() {
|
||||||
git remote show origin -n | awk '/Fetch URL:/{print $3}'
|
git remote show origin -n | awk '/Fetch URL:/{print $3}'
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue