我需要一个bash代码,自动从Openshift RHC服务器上传一个文件夹到github.com网站。
所以我成功地将openshift RHC的SSH密钥添加到Github。我可以通过以下代码手动将一个文件夹整个插入Github服务器:
echo "# openshift-test23" >> README2.md
git init
#git add README2.md
git add .
git config --global user.name "soheilpaper"
#git config --global user.email soheil_paper@yahoo.com
#git commit --amend --reset-author
git commit -a -m "first commit"
git push origin master
Username for 'https://github.com': xyz
Password for 'https://xyz@github.com':
但是当我想编写一个代码来自动从Openshift RHC上传一个文件夹到Github时,需要通过以下代码手动输入用户名和密码:
$ git push origin master
Username for 'https://github.com': xyz
Password for 'https://xyz@github.com':
那我怎么能在openshift RHC Linux服务器上绕过它?
非常感谢。
答案 0 :(得分:0)
我通过以下代码找到答案:
StringBuffer