1
我新來的Git,所以我想學習git。同時當我工作的混帳,GitHub推送只讀
ERROR: Permission to username/file.git denied to Username1. fatal: Could not read from remote repository.
請確保您有正確的訪問權限 和庫中存在。
我遇到此錯誤。順便說一下,文件只能讀取。我該如何推?
- 混帳克隆[email protected]:用戶名/ file.git
- 混帳添加Files.txt
- git的補充。
- git的承諾-a -m 「第二次提交」
- 混帳推[email protected]:用戶名/ file.git
順便說一句混帳配置
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
ignorecase = true
precomposeunicode = false
[remote "origin"]
url = [email protected]:username/files.git
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
remote = origin
merge = refs/heads/master
推請出示你做的步驟。 – Kjuly
git clone [email protected]:username/file.git git add Files.txt git add。 git commit -a -m「第二次提交」 git push [email protected]:username/file.git – SemihY