2
2

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 5 years have passed since last update.

gitのトラブルシュート(自分用)

Posted at

完全に自分用・・・随時追記予定・・・

##Git cloneをhttpsでやった後でプロトコルをsshにする方法です。

###背景
github 上のリポジトリをgit cloneした後、Pushしようとすると失敗する。

###原因
プロトコルがSSHではなくHTTPSになっていた。(クローン時にHTTPSでクローンしたため)

###解決方法

リモートリポジトリ(origin)がどちらになっているか確認
git remote -v

SSHに変更する
git remote set-url origin git@github.com:user/repo.git

###解決の前提

対象のリモートリポジトリに対するSSH設定が完了していることが前提

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?