From 2a6b416d0ad017b46773c54e917a1af7db9d8f62 Mon Sep 17 00:00:00 2001 From: Michael Tyson Date: Thu, 16 Nov 2023 19:36:44 -0500 Subject: [PATCH] Fix git aliases and commands --- nushell/aliases.nu | 1 - nushell/commands.nu | 5 ++--- 2 files changed, 2 insertions(+), 4 deletions(-) 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 +}