13
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Git ローカルリポジトリをリモートリポジトリの紐付けを解除する

Last updated at Posted at 2021-03-16

方法

  1. リポジトリ内部で下記コマンドを実行して現在のリモートリポジトリアドレスを表示する。

    $ git remote -v
    
  2. 前のコマンドの出力に記載されているリモートブランチ名をコピーする。(デフォルトだとorigin)

  3. 下記コマンドを実行してローカルリポジトリとリモートリポジトリの紐付けを解除する。

    $ git remote remove リモートリポジトリ名(デフォルトだとorigin)
    
  4. 下記コマンドを実行してリモートリポジトリのリンクアドレスが表示されなければ紐付けの解除は成功している。

参考文献

13
16
1

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
13
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?