从powershell获取github的最新代码

时间:2013-08-17 14:25:40

标签: android powershell github build

我正在为Android应用创建一个每晚构建的powershell脚本。它会表现得像这样:

  1. 从github获取最新代码
  2. 构建android .apk文件
  3. 将该apk文件复制到build文件夹
  4. 此脚本将每晚由Windows计划任务运行。

    我无法自动获取最新代码。我被提示输入凭据。如何编写包含我的凭据的每晚构建脚本,以便我不会每次都输入它们?

    enter image description here

1 个答案:

答案 0 :(得分:2)

您可以在_netrc中添加C:\Users\Ben文件并附上您的凭据:

machine github.com
login yourGitHUbLogin
password yourGitHubPassword

请参阅“Git - How to use .netrc file on windows to save user and password”。

如果以明文形式留下您的凭证的想法似乎不太好,您可以encrypt that file with gpg