从LocalSystem帐户下运行的rake中正确设置git commit --author,可以通过以下步骤实现:
.gitconfig
的文件,如果已经存在,请跳过此步骤。[user]
name = "Your Name"
email = "your.email@example.com"将Your Name
替换为您的姓名,将your.email@example.com
替换为您的电子邮件地址。
3. 在rake
任务中设置GIT_CONFIG_PARAMS
环境变量,以便在执行git commit
时使用上述配置。task :commit do
ENV['GIT_CONFIG_PARAMS'] = '--file=.gitconfig'
sh "git commit -m 'Your commit message'"
end将Your commit message
替换为您的提交信息。
4. 运行rake commit
任务,它将使用指定的用户名和电子邮件地址进行提交。.gitconfig
文件中添加以下内容:这样,您就可以在LocalSystem帐户下运行的rake中正确设置git commit --author了。
领取专属 10元无门槛券
手把手带您无忧上云