diff options
Diffstat (limited to '.local/bin/development/ghclone')
-rwxr-xr-x | .local/bin/development/ghclone | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.local/bin/development/ghclone b/.local/bin/development/ghclone new file mode 100755 index 0000000..2e11024 --- /dev/null +++ b/.local/bin/development/ghclone @@ -0,0 +1,5 @@ +#!/bin/sh + +URL="https://github.com/$1/${2:-$1}" +echo "Clone URL: $URL" +git clone "$URL" |