2
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 1 year has passed since last update.

お題は不問!Qiita Engineer Festa 2023で記事投稿!

Gitで`error: remote origin already exists.`が出た時の対処法

Posted at

初めに

PowerShellでgit remote add origin <URL>を実行したら

error: remote origin already exists

というエラーを吐いたのでそれを調べた結果をまとめます。

1.リモートリポジトリを確認する

既に origin という名前のリモートリポジトリが存在するかどうか確認します。

git remote -v 

コマンドを使用して、現在のリモートリポジトリの一覧を表示できます。

2-1.origin を削除する

もし既に origin が存在している場合、それを削除することで問題を解決できます。以下のコマンドを使用して origin を削除します。

git remote remove origin

origin が正しく削除された場合、その後で git remote add コマンドを再度実行することができます。

2-2.既存の origin を変更する

もし origin として指定しようとしているリモートリポジトリを変更したい場合は、既存の origin を変更することもできます。以下のコマンドを使用して、既存の origin を変更します。

git remote set-url origin <新しいリモートリポジトリのURL>

これでgit remote add のエラーを解決できるはずです!

2
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
2
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?