LoginSignup
0
0

More than 3 years have passed since last update.

git hubにpushしようとしたところ「fatal: The current branch develop/feature/discussion has no upstream branch.」と出てしまった場合の対応方法

Posted at

怒られた

$ git push

でコードをgit hubにアップしようとしたところ、
fatal: The current branch develop/feature/discussion has no upstream branch.

と怒られてしまいました。
これは、「githubが「知らんブランチなんやけど」と言っているようです。

対応策

上流ブランチをあてがって上げればいいのですが、エラーの時にヒントを出してくれてます。

image.png

なので、そのまま

$ git push --set-upstream origin develop/feature/discussion

とコードして、

$ git push

これで、パスワード入力したらOKです。

Everything up-to-date

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0