0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

git push で、Please make sure you have the correct access rights and the repository exists.って言われた話

Posted at

なぜ起こる?

 push先のリモートディレクトリの設定が行えていない。gitからしてみれば、『どこにpushすればええねん。』状態です。

簡単に解消法を説明

 こちらは、既存のリモートレポジトリで現在のプロジェクトをgit管理する場合になります。

git管理します宣言

git init

既にありますよ?って言われたら、.gitを一度削除して、initし直すのが一番手っ取り早いです。

push先レポジトリの指定

git remote add origin https://github.com/ユーザー名/プロジェクト名.git

ユーザー名、プロジェクト名は下記画像参考にしてください。

![スクリーンショット 2021-02-25 15.55.22.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/754176/879cd5f8-4f4e-17fa-6581-5ed0bfe3e886.png)

レポジトリの作成

``` git checkout -b develop ```

試験的にpushするためのレポジトリなので説明は省略します。とりあえずdevelop

add,commit,push

``` git add . git commit -m "コミットメッセージ" git push origin develop ```

pushでエラーが出なければ、本記事における作業は終了です。github.comにてリモートに反映ができているかの確認をしてください。

おわりに

 今回コマンドでのgitの扱いを解説しましたが、コンフリクト等起こった時は個人的にコマンドでの解決が一番早いので、慣れておいて損はないかと思います。僕自身初心者としてgitが煩わしく感じましたが、ラプトップ一つで仕事をする上で非常に重要なツールなので、常に触るようにすることを心がけております。

 最後までお読みいただきありがとうございます。


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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?