Solarex's Blog

我只想过,平平淡淡的生活,欲望啊,请放过脆弱的我

Moving Bitbucket Repo to Github

| Comments

1
2
3
4
5
6
git clone https://bitbucket.org/username/repos.git local_dir
cd local_dir
git remote rename origin bitbucket
git remote add origin git@github.com:username/repos.git
git push -u origin master
git remote rm bitbucket

Comments