From 97f50a62097084c44c3fe6b654f8bda8533c62ef Mon Sep 17 00:00:00 2001 From: Julius Riegel Date: Fri, 15 Mar 2024 16:30:10 +0100 Subject: [PATCH] Improve formatting for git yeet --- content/config/nushell/aliases.nu.tmpl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/content/config/nushell/aliases.nu.tmpl b/content/config/nushell/aliases.nu.tmpl index 735ecea..2b67964 100644 --- a/content/config/nushell/aliases.nu.tmpl +++ b/content/config/nushell/aliases.nu.tmpl @@ -24,7 +24,9 @@ alias ga. = git add . alias gu = git pull def `git yeet` [] { - git add .; git commit -m (http get https://whatthecommit.com/index.txt); git push + git add . + git commit -m (http get https://whatthecommit.com/index.txt) + git push } alias gy = git yeet {{/if-installed}}