開発環境ubunt18.04
ターミナルで
git init
git add -A
git remote add origin git@bitbucket.org:yamano1122/piano.git
git push -u origin --all
としたところ下のエラーが出ました。
To bitbucket.org:yamano1122/piano.git
! [rejected] master -> master (fetch first)
error: could not lock config file .git/config: 許可がありません
error: Unable to write upstream branch configuration
ヒント:
ヒント: After fixing the error cause you may try to fix up
ヒント: the remote tracking information by invoking
ヒント: "git branch --set-upstream-to=origin/modify-README".
error: update_ref failed for ref 'refs/remotes/origin/modify-README': cannot lock ref 'refs/remotes/origin/modify-README': unable to create directory for .git/refs/remotes/origin/modify-README
error: failed to push some refs to 'git@bitbucket.org:yamano1122/piano.git'
ヒント: Updates were rejected because the remote contains work that you do
ヒント: not have locally. This is usually caused by another repository pushing
ヒント: to the same ref. You may want to first integrate the remote changes
ヒント: (e.g., 'git pull ...') before pushing again.
ヒント: See the 'Note about fast-forwards' in 'git push --help' for details.
管理者でやればいいのでは思い実行すると
sudo git push -u origin --all
git@bitbucket.org: Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
となってしまいました…どこをどうしたらいいのでしょうか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/11/04 09:48