mirror of
https://github.com/RGBCube/nu_scripts
synced 2025-08-03 07:37:47 +00:00
Fix git hard reset to origin branch alias (groh) (#654)
An extra '$' was preventing the command from working.
This commit is contained in:
parent
8add04deb8
commit
c2bb125a67
1 changed files with 1 additions and 1 deletions
|
@ -138,7 +138,7 @@ export alias grbs = git rebase --skip
|
||||||
export alias grev = git revert
|
export alias grev = git revert
|
||||||
export alias grh = git reset
|
export alias grh = git reset
|
||||||
export alias grhh = git reset --hard
|
export alias grhh = git reset --hard
|
||||||
export alias groh = git reset $"origin/$(git_current_branch)" --hard
|
export alias groh = git reset $"origin/(git_current_branch)" --hard
|
||||||
export alias grm = git rm
|
export alias grm = git rm
|
||||||
export alias grmc = git rm --cached
|
export alias grmc = git rm --cached
|
||||||
export alias grmv = git remote rename
|
export alias grmv = git remote rename
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue