Gitで管理している数が多くなってきたので自サーバーに設置したGitbucketへ移行することになった。そのときの手順。
git remote add origin https://example.com/git/username/project_name.git
でいけるものとおもってたけども一度設定してあると別のコマンドで設定しないといけないっぽい。
originの設定確認
git config -l
の通りに
git remote set-url origin https://example.com/git/username/project_name.git
originの設定確認
git config -l
変更されているか確認して
git push -u origin master