[Github]commit logを含むライブラリの移動


サマリ
1.既存のリモートストレージ(旧repo)接続の切断
2.転送したいリポジトリへの接続
  • 移行したいrepoクローン
  • $ git clone <기존 repo 위치>
  • 接続の遠隔位置確認
  • $ git remote -v
  • リモート・リポジトリ接続を切断
  • $ git remote remove <old repo name>
  • 移動するリポジトリ(newrepo)に接続
  • $ git remote add <name> <new repo 위치>
  • add - commit - push洛新repo
  • これにより、commitレコードを紛失することなく一緒に移動できます.