2017-04-14 4 views
1

私はGitHubとBitBucketの両方のアカウントを持っていますが、私はGitHubを1つしか使用しません。数日前に私がBitBucketリポジトリを使ってクライアントを入手したときに、私はそれを試してSourceTreeをインストールし、そこにレポを引っ張ってすべてを確認した。この問題は、私のGitHubリポジトリにあったプロジェクトに行ったときに発生しました。私は変更を加えて、コンソールでaddcommitをした、と私はgit pushを書いたとき、これが出てきた:git pushを実行するときにGitHubがBitBucketに変更されました

warning: push.default is unset; its implicit value has changed in 
Git 2.0 from 'matching' to 'simple'. To squelch this message 
and maintain the traditional behavior, use: 

    git config --global push.default matching 

To squelch this message and adopt the new behavior now, use: 

    git config --global push.default simple 

When push.default is set to 'matching', git will push local branches 
to the remote branches that already exist with the same name. 

Since Git 2.0, Git defaults to the more conservative 'simple' 
behavior, which only pushes the current branch to the corresponding 
remote branch that 'git pull' uses to update the current branch. 

See 'git help config' and search for 'push.default' for further information. 
(the 'simple' mode was introduced in Git 1.7.11. Use the similar mode 
'current' instead of 'simple' if you sometimes use older versions of Git) 

fatal: The current branch master has no upstream branch. 
To push the current branch and set the remote as upstream, use 

    git push --set-upstream origin master 

だから私は、私はgit config --global push.default matchingコマンドを実行して、もう一度試してみた考え出し。 xyzはのBitbucket

上の共有レポユーザのも、私のユーザー名またはユーザ名でない場合

Password for 'https://[email protected]': 

だから、私の質問は、それが起こった、そしてどのように私はこれを元に戻すことができる方法です。その後、私は言っメッセージが表示されました私のGitHubレポを押す?

+0

あなたのレポに 'git remote -v'の出力はありますか? –

+0

'origin https://[email protected]/xyz/project_name.git(push)' – Norgul

+0

ああ、別のリポジトリを指していたサーバから '.git'を引っ張ったかもしれない。それは私のものですか? – Norgul

答えて

2

あなたはOPのコメントにgit remote -v出力を述べた:

$ gitのリモート-v
起源https://[email protected]/xyz/project_name.git(プッシュ)

git remote -vはあなたのBitbucketリポジトリにリンクされています。 originをGitHubのURLで変更/設定する必要があります。

$ git remote set-url origin <github-repo-url> 

# make sure 'origin' is updated 
$ git remote -v 
関連する問題