因此,當我使用HTTPS方法克隆git存儲庫並做一些更改並將push
或pull
作爲git時,它總會提示我username and password
。有什麼解決方案?Git需要git push的用戶名和密碼,使用HTTPS方法的git pull
0
A
回答
0
除了更改爲SSH之外,如果您不介意以明文形式輸入密碼,還可以繼續使用HTTPS。把它放在你的〜/ .netrc裏,它不會要求你的用戶名/密碼(至少在Linux和Mac上)
在你的主目錄下製作一個.netrc
文件。
machine github.com
login <user>
password <password
0
+1
這僅適用於單個回購。 –
相關問題
- 1. git push和git pull有什麼區別?
- 2. xcode git pull/push crash
- 3. git merge,push,pull confusion
- 4. git submodule commit/push/pull
- 5. 爲什麼我們需要在git pull之前先push git?
- 6. 使用REST API的Git pull和Git clone
- 7. Git中的用戶名和密碼
- 8. git新手 - git add/commit/push/pull
- 9. Heroku:'git push -f'後如何「git pull」
- 10. 如何撤消git pull或git push?
- 11. `git pull`後需要`git checkout`嗎?
- 12. git push -u原點大師,用戶名和密碼
- 13. 包括.pem for git pull/push
- 14. Git Push/Pull VS 2015 Issue
- 15. git push/pull - 默認爲github
- 16. GIT pull請求root密碼
- 17. 使用git拉用戶名和密碼aws代碼提交
- 18. git push和git pull後破壞的python virtualenv
- 19. git pull和git push的不同默認遠程(跟蹤分支)
- 20. 無法'git submodule foreach git pull'
- 21. 使用Qt Creator的git push
- 22. Git配置 - 仍然要求用戶名和密碼
- 23. 不需要在Ubuntu中輸入git pull的密碼
- 24. 瞭解git pull和git fetch
- 25. git fetch和git pull混淆
- 26. 如何爲git commit,git pull,git push和pull在遠程服務器上創建bash或zsh別名?
- 27. 用git push發送密碼短句
- 28. 爲什麼git push在git pull之後無法快進?
- 29. 我可以使用git pull --rebase而不是「git stash git pull git stash pop」嗎?
- 30. git pull VS git fetch git rebase
我找到了解決辦法! –
「解決這個問題」是什麼意思?你在問什麼? –
@ Code-Apprentice現在可以嗎? –