diff --git a/nushell/aliases.nu b/nushell/aliases.nu index 1c3a370..aee1046 100644 --- a/nushell/aliases.nu +++ b/nushell/aliases.nu @@ -4,7 +4,6 @@ alias ac = and-cli alias gs = git submodule alias gsf = git submodule foreach alias gsu = git submodule update -alias gaa = git add .; git commit --amend --no-edit alias python = python3 alias py = python3 alias http = ^http diff --git a/nushell/commands.nu b/nushell/commands.nu index 6cad3a7..64f08a7 100644 --- a/nushell/commands.nu +++ b/nushell/commands.nu @@ -1,6 +1,5 @@ - def "gam" [] { - git add .; git commit --amend + git add .; git commit --amend --no-edit } def "gpr" [] { @@ -13,4 +12,4 @@ def "dadjoke" [] { def bup [] { brew update; brew upgrade; brew cleanup -} \ No newline at end of file +}