1

「Bitbucket」のリポジトリにローカル コンテンツをプッシュしようとしていますが、ファイルをコミットした後に「git push」しようとすると、次のエラーが発生します。

エラーメッセージ

$ git push -u origin master
fatal: 'origin' does not appear to be a git repository
fatal: Could not read from remote repository.

この点で私たちを助けてもらえますか?

4

4 に答える 4

4

私はちょうど同じ問題を抱えていました、これはあなたを助けるかもしれません:

#initialize git in the folder   
git init
#add remote repository (this did not work for me)
git remote add origin https://myusername@bitbucket.org/myusername/myrepo.git
#...so i changed it later (after some git add and commit commands)
git remote set-url origin https://myusername@bitbucket.org/myusername/myrepo.git
#now it worked:
git push -u origin master

エラー メッセージが表示された場合は、次remote origin already existsを実行します。

git remote rm origin
于 2013-10-12T16:01:17.720 に答える
3

git remote addコマンドの実行に失敗したようです。

通常、これは次のようになります

git remote add origin ssh://git@bitbucket.org/[USERNAME]/[REPONAME].git

ただし、次のドキュメントに従うと、リポジトリの正しい情報を見つけることができるはずです: https://confluence.atlassian.com/display/BITBUCKET/Importing+code+from+an+existing+project

于 2013-03-14T14:44:02.927 に答える
0

あなたは試すことができますgit push --mirror url-of-your-bitbucket-remote

于 2014-01-30T13:17:45.577 に答える
0

誤って「i」が元にない状態で実行しました。

git remote add orign url

以下のコマンドを使用して表示する場合にのみ見つけます

git remote -v

を使用して削除します

git remote remove orign

を使用して正しいスペルで再度作成しました

git remote add origin url
于 2014-05-28T14:14:13.010 に答える