8 lines
296 B
Bash
Executable File
8 lines
296 B
Bash
Executable File
#!/bin/sh
|
|
# Translates different repo notations into ssh
|
|
case "$1" in
|
|
http*) echo "git@$(echo "$1" | cut -d'/' -f3):$(echo "$1" | cut -d'/' -f4)/$(echo "$1" | cut -d'/' -f5)" ;;
|
|
git:*) echo "$1" ;;
|
|
*) echo "${1:-git.jfischer.org}:${3:-$(git config user.name)}/${2:-$(basename $PWD)}.git" ;;
|
|
esac
|