Skip to main content

git: remove a couple of scripts I don’t use

ID
5d3318d
date
2025-08-02 06:41:33+00:00
author
Alex Chan <alex@alexwlchan.net>
parent
46e9d4d
message
git: remove a couple of scripts I don't use
changed files
3 files, 1 addition, 32 deletions

Changed files

git/README.md (7624) → git/README.md (7050)

diff --git a/git/README.md b/git/README.md
index 83dd2e4..ba1c1d3 100644
--- a/git/README.md
+++ b/git/README.md
@@ -97,12 +97,6 @@ scripts = [
         """
     },
     {
-        "variants": ["grc", "grs"],
-        "description": """
-        alias for <a href="https://git-scm.com/docs/git-rebase"><code>git rebase --continue / --skip</code></a>
-        """
-    },
-    {
         "usage": "gub",
         "description": """
         open the current Git repo in my web browser (assuming it's a GitHub repo)
@@ -238,19 +232,6 @@ cog_helpers.create_description_table(folder_name=folder_name, scripts=scripts)
   </dd>
 
   <dt>
-    <a href="https://github.com/alexwlchan/scripts/blob/main/git/grc">
-      <code>grc</code>
-    </a>
-/
-    <a href="https://github.com/alexwlchan/scripts/blob/main/git/grs">
-      <code>grs</code>
-    </a>
-  </dt>
-  <dd>
-    alias for <a href="https://git-scm.com/docs/git-rebase"><code>git rebase --continue / --skip</code></a>
-  </dd>
-
-  <dt>
     <a href="https://github.com/alexwlchan/scripts/blob/main/git/gub">
       <code>gub</code>
     </a>
@@ -268,4 +249,4 @@ cog_helpers.create_description_table(folder_name=folder_name, scripts=scripts)
     open the current Git repo in <a href="https://gitup.co/">GitUp</a>, my GUI Git client of choice
   </dd>
 </dl>
-<!-- [[[end]]] (checksum: 113cfe8c833dfc74985f3f7dff2bcace) -->
+<!-- [[[end]]] (sum: kgos+cwNSe) -->

git/grc (74) → git/grc (0)

diff --git a/git/grc b/git/grc
deleted file mode 100755
index 01dde80..0000000
--- a/git/grc
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/usr/bin/env bash
-
-set -o errexit
-set -o nounset
-
-git rebase --continue

git/grs (70) → git/grs (0)

diff --git a/git/grs b/git/grs
deleted file mode 100755
index fc2b710..0000000
--- a/git/grs
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/usr/bin/env bash
-
-set -o errexit
-set -o nounset
-
-git rebase --skip