如何使用python自动化git push进程?

时间:2018-04-09 05:40:01

标签: python bash git python-3.x

我正在尝试使用python自动化<aspectj> <weaver options="-Xset:weaveJavaxPackages=true"> <include within="de.hybris.platform.promotions.jalo.OrderPromotion"/> <include within="de.hybris.platform.b2bacceleratorservices.jalo.promotions.OrderThresholdDiscountPercentagePromotion"/> <include within="com.myproject.extended.interceptor.*"/> </weaver> <aspects> <aspect name="com.myproject.aop.AbstractOrderAOP"/> </aspects> </aspectj> 进程。

除了在git push命令后输入用户名和密码外,我已成功自动完成所有操作。

到目前为止,这是我的代码:

git push

有没有办法将信息发送到命令?

1 个答案:

答案 0 :(得分:1)

如果可能,请使用凭据帮助程序来缓存该信息(与远程URL关联的凭据) 查看gitcredential section和&#34; Git Tools - Credential Storage&#34;。

git config --global credential.helper

这样,您根本不必输入该信息。