From 47ee208fa3ade4a8ad9721ab0b5718cd9e11c113 Mon Sep 17 00:00:00 2001 From: samedamci Date: Tue, 31 Aug 2021 11:29:57 +0200 Subject: [PATCH] Add tags command --- guzzy/commands/tags.sh | 4 ++++ pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100755 guzzy/commands/tags.sh diff --git a/guzzy/commands/tags.sh b/guzzy/commands/tags.sh new file mode 100755 index 0000000..89b2fd1 --- /dev/null +++ b/guzzy/commands/tags.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +git --no-pager tag --sort=-taggerdate -l | + fzf --preview "git --no-pager tag -l {} --format='%(contents)'" diff --git a/pyproject.toml b/pyproject.toml index 8cefd38..c083836 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "guzzy" -version = "0.1.1" +version = "0.1.2" description = "Interactive CLI git client inside fzf." authors = ["samedamci "] license = "ISC"