2015年9月24日 星期四

Git - 同步 github 到 gitlab

下載 repository 到本地端
$git clone https://github.com/username/repo-name.git
進入 repository 目錄
$cd repo-name
增加遠端 repository
$git remote add gitlab https://gitlab.com/username/repo-name.git
上傳 commit
$git push -f --tags refs/heads/*:refs/heads/*
 

沒有留言: