我正在为Android应用创建一个每晚构建的powershell脚本。它会表现得像这样:
此脚本将每晚由Windows计划任务运行。
我无法自动获取最新代码。我被提示输入凭据。如何编写包含我的凭据的每晚构建脚本,以便我不会每次都输入它们?
答案 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。