diff --git a/nas-clone.sh b/nas-clone.sh new file mode 100644 index 0000000..9b5dc32 --- /dev/null +++ b/nas-clone.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +base_url="http://117.50.220.191:8418/nas" +project_name="" + +# 循环,直到project_name非空 +while [ -z "$project_name" ]; do + read -p "请输入项目名称: " project_name +done + +repo_url="${base_url}/${project_name}.git" + +git clone "${repo_url}" \ No newline at end of file