Cloneしたプロジェクトでリモートにfetchしたり, pushできなかった。
もくじ
解決方法
現状を確認
$ git remote -v origin https://gitlab.com/hoge/project-android.git (fetch) origin https://gitlab.com/hoge/project-android.git (push)
ふむふむ…。
リモートのoriginを削除します。
$ git remote remove origin
ユーザ名を追加します。
$ git remote add origin https://<ユーザ名>@gitlab.com/project/project-android.git 例) $ git remote add origin https://yuu@gitlab.com/project/project-android.git
これでpushしたり、fetchしたりできるようになりました。