LoginSignup
0
0

More than 3 years have passed since last update.

git remote 名前変更

Posted at

追加

$ git remote add new https://github.com/xxxx/xxx.git

登録確認

$ git remote -v
new https://github.com/xxxx/xxx.git (fetch)
new https://github.com/xxxx/xxx.git (push)

名前変更

$ git remote rename new upstream

$ git remote -v
upstream    https://github.com/xxxx/xxx.git (fetch)
upstream    https://github.com/xxxx/xxx.git (push)
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