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:
Ade Attwood 2021-07-10 21:21:24 +01:00
parent e5655ed216
commit 385829ea8b

View file

@ -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}'