Last active
February 11, 2025 12:59
-
-
Save alifeee/bb0499e1272f312b82497031d28e91f2 to your computer and use it in GitHub Desktop.
quickly clone a github repository (Gnome desktop launcher)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://gist.github.com/alifeee/bb0499e1272f312b82497031d28e91f2 | |
# place in /usr/share/applications/clone.desktop | |
[Desktop Entry] | |
Version=0.1.0 | |
Name=Git Clone | |
Comment=Clone a GitHub repository | |
Exec=/home/alifeee/Desktop/clone.sh | |
Terminal=true | |
Type=Application | |
Categories=Utility;Application; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# quickly clone a Git repository (GitHub/Codeberg/etc) | |
# 1. take user input of a repository | |
# can be URL like https://codeberg.org/swiso/website | |
# can be owner/repo like "alifeee/blog" (takes default forge) | |
# can just be repo like "weeknotes" (takes default forge and default user) | |
# 2. attempt to pattern match to an actual repository | |
# 3. attempt to clone it | |
# 4. open in file explorer or code editor | |
# made by alifeee | |
# version 0.2.1 | |
# https://gist.github.com/alifeee/bb0499e1272f312b82497031d28e91f2 | |
BASE="/home/alifeee/git" | |
DEFAULT_FORGE="github.com" | |
DEFAULT_USERNAME="alifeee" | |
echo "will clone to ${BASE}" | |
cd "${BASE}" | |
if [ -n "${1}" ]; then | |
SSH_LOC="${1}" | |
echo "read repository from first argument" | |
else | |
read -e -p "repository: " SSH_LOC | |
fi | |
echo " input: ${SSH_LOC}" | |
# e.g., [email protected]:alifeee/blog.git | |
PAT_FULL="^git@([^:]*):([^\/]*)\/([^\/]*).git$" | |
# e.g., [email protected]:alifeee/blog | |
PAT_WITHOUT_EXTENSION="^git@([^:]*):([^\/]*)\/([^\/]*)$" | |
# e.g., alifeee/blog | |
PAT_OWNER_REPO="^([^\/]*)\/([^\/]+)$" | |
# e.g., blog (only works when specifying default github account) | |
PAT_REPO="^([^\/]+)/?$" | |
# e.g., github.com/alifeee/blog.git | |
PAT_HTTPS_DOTGIT="https?://([^/]*)\/([^\/]*)\/([^\/]*).git$" | |
# e.g., github.com/alifeee/blog... | |
PAT_HTTPS="https?://([^/]*)\/([^\/]*)\/([^\/]*)" | |
if [[ "${SSH_LOC}" =~ $PAT_FULL ]]; then | |
echo "matched PAT_FULL" | |
forge="${BASH_REMATCH[1]}" | |
owner="${BASH_REMATCH[2]}" | |
repo="${BASH_REMATCH[3]}" | |
elif [[ "${SSH_LOC}" =~ $PAT_WITHOUT_EXTENSION ]]; then | |
echo "matched PAT_WITHOUT_EXTENSION" | |
forge="${BASH_REMATCH[1]}" | |
owner="${BASH_REMATCH[2]}" | |
repo="${BASH_REMATCH[3]}" | |
elif [[ "${SSH_LOC}" =~ $PAT_OWNER_REPO ]]; then | |
echo "matched PAT_OWNER_REPO" | |
forge="${DEFAULT_FORGE}" | |
owner="${BASH_REMATCH[1]}" | |
repo="${BASH_REMATCH[2]}" | |
elif [[ "${SSH_LOC}" =~ $PAT_REPO ]]; then | |
echo "matched PAT_REPO" | |
forge="${DEFAULT_FORGE}" | |
owner="${DEFAULT_USERNAME}" | |
repo="${BASH_REMATCH[1]}" | |
elif [[ "${SSH_LOC}" =~ $PAT_HTTPS_DOTGIT ]]; then | |
echo "matched PAT_HTTPS_DOTGIT" | |
forge="${BASH_REMATCH[1]}" | |
owner="${BASH_REMATCH[2]}" | |
repo="${BASH_REMATCH[3]}" | |
elif [[ "${SSH_LOC}" =~ $PAT_HTTPS ]]; then | |
echo "matched PAT_HTTPS" | |
forge="${BASH_REMATCH[1]}" | |
owner="${BASH_REMATCH[2]}" | |
repo="${BASH_REMATCH[3]}" | |
else | |
read -s -n1 -p "no match type found :(" | |
exit 1 | |
fi | |
printf " parsed: (%s) (%s) (%s)\n" "${forge}" "${owner}" "${repo}" | |
cloneme="git@${forge}:${owner}/${repo}.git" | |
echo " attempting to clone ${cloneme}" | |
(cd "${BASE}"; git clone "${cloneme}") | |
folder=$(echo "${cloneme}" | pcregrep -o3 "${PAT_FULL}") | |
fullpath="${BASE}/${folder}" | |
if [ ! -d "${fullpath}" ]; then | |
read -s -n1 -p " no cloned folder found. curious... press ENTER to exit" | |
exit 1 | |
else | |
openme="${BASE}/${folder}" | |
fi | |
echo "cloned to ${openme}. what now?" | |
echo " 1 or ENTER to open in terminal" | |
echo ' 2 to open in file explorer' | |
echo ' 3 to open in VSCodium' | |
read -p ":" ACTION | |
if [ "${ACTION}" == "3" ]; then | |
codium "${openme}" | |
elif [ "${ACTION}" == "2" ]; then | |
# open in explorer | |
xdg-open "${openme}" | |
else | |
gnome-terminal --working-directory="${openme}" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment