如何从Shell脚本(Linux)执行git-clone命令

时间:2019-05-02 07:04:06

标签: bash git shell git-clone

需要从shell脚本执行git clone命令

我尝试使用git clone命令,它正在工作

我能够从git-bash控制台执行以下命令,以从我的项目中签出developer1_branch

git clone --branch developer1_branch https://project_ip/project.git /tmp/$(date +%Y%m%d)

此命令将要求提供凭据,并将使用当前日期将项目克隆到/ tmp文件夹。

预期结果:

  1. 需要从shell脚本运行相同的命令。
  2. 要自动执行脚本以从creds.properties文件中读取凭据,该文件将具有user = userid和password = Password123作为属性? 请让我知道如何实现?

0 个答案:

没有答案