From 7677b964af379fb6974cb07f3e265da7c947e1b8 Mon Sep 17 00:00:00 2001 From: "Lee, Jun Seok" Date: Thu, 19 Sep 2024 16:06:29 +0900 Subject: [PATCH] Replace `bin/gfod` w/ alias --- bin/gfod | 2 -- zsh/alias.zsh | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) delete mode 100755 bin/gfod diff --git a/bin/gfod b/bin/gfod deleted file mode 100755 index 289582a..0000000 --- a/bin/gfod +++ /dev/null @@ -1,2 +0,0 @@ -#!sh -git fetch origin develop:develop diff --git a/zsh/alias.zsh b/zsh/alias.zsh index 65e8bb2..2eb15e8 100644 --- a/zsh/alias.zsh +++ b/zsh/alias.zsh @@ -12,3 +12,5 @@ alias tfaa='terraform apply -parallelism 100 -auto-approve' alias tfd='terraform destroy -parallelism 100' alias tff='terraform fmt -recursive' alias tfsl='terraform state list | sort' + +alias gfod='git fetch origin develop:develop'