aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordanix <danix@danix.xyz>2019-01-07 18:48:49 +0100
committerdanix <danix@danix.xyz>2019-01-07 18:48:49 +0100
commitca537cd8bdae9e819bb8e24d7bd7f998e8fa909a (patch)
treec851e1f3f5defa65346323366035dd9233ad9031
parentd96d4d16706f295af4f5e1df201a683606f2f108 (diff)
downloadgit_shell-ca537cd8bdae9e819bb8e24d7bd7f998e8fa909a.tar.gz
git_shell-ca537cd8bdae9e819bb8e24d7bd7f998e8fa909a.zip
added output to create script to return clone address when creating a new repository
-rwxr-xr-xcreate1
1 files changed, 1 insertions, 0 deletions
diff --git a/create b/create
index a98db20..8ee6610 100755
--- a/create
+++ b/create
@@ -78,6 +78,7 @@ EOT
cd ${GITDIR}/
chown -R ${GITUSER}:${GITGRP} ${GITDIR}/${PROJECT}.git
echo "All done, you can now work on \"${PROJECT}.git\""
+ echo "You can clone this repository at ssh://danix_git:/${GITDIR}/${PROJECT}.git"
exit 0
}