Skip to content

Commit

Permalink
Remove git aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonmorganson committed Mar 19, 2024
1 parent 2dd4c9d commit f484942
Showing 1 changed file with 0 additions and 33 deletions.
33 changes: 0 additions & 33 deletions dot_config/nushell/scripts/aliases.nu
Original file line number Diff line number Diff line change
Expand Up @@ -7,46 +7,13 @@ export alias lla = ls -la
export alias ag = rg

export alias g = git
export alias a = git add -p
export alias b = git branch
export alias c = git commit -m
export alias s = git status --show-stash
export alias m = git merge
export alias p = git push
export alias u = git pull
export alias r = git reset

export alias gg = git
export alias cl = git clone
export alias co = git checkout
export alias pf = git push --force-with-lease
export alias gb = git branch
export alias gf = git fetch
export alias gl = git log

export alias cob = git checkout -b

export alias tig = gitui

export alias diff = git diff
export alias reset = git reset
export alias revert = git revert
export alias rebase = git rebase
export alias stash = git stash
export alias wip = git commit -am "WIP"
export alias fixup = git commit --fixup
export alias unpushed = git log --branches --not --remotes --no-walk --decorate --oneline
export alias stashes = git stash list
export alias untracked = git status --untracked

export def unclean [] { gfold -d json ~/Code | from json | where status != Clean }

export def undone [] {
untracked
unpushed
stashes
}

export alias vi = hx
export alias vim = vi
export alias nvim = vi
Expand Down

0 comments on commit f484942

Please sign in to comment.