Gitレポジトリを別レポジトリへコピー

memo.

git レポジトリのコピー

base__gulpをコピーして、別のレポジトリを作りたかったのでメモ。

なおコミット履歴、そのたbranchの引き継ぎは考慮しない。

予め、githubで新規レポジトリを作っておく

ローカルにコピー元のレポジトリを落とし、リネームしておく

$ git clone https://user_name@github.com/shnr/base__gulp.git
$ mv base__gulp new_repo
$ cd new_repo

gitを削除し、再度イニシャライズ

$ rm -rf .git
$ git init

その後、新しく作ったレポジトリにコミットする

$ git add .
$ git commit -m 'first commit'
$ git remote add origin git@github.com:shnr/new_repo.git
$ git push --set-upstream origin master

以上で終了。