站长博客
站长博客随手笔记
Toggle navigation
站长博客
Home
MacOS
Database
Linux
PHP
Git
Golang
About Me
Archives
Tags
git仓库迁移
GIT
2019-03-16 10:32:26
228
0
0
admin
GIT
1. `git clone --mirror http://old.ip/score-group/rest-score.git old.git` 解释:克隆原仓库的镜像。其中包括的项目的所有信息,以及config 注意:是“http://”不是“https://” 2. `cd old.git` 进入上面的镜像目录(一定要进入该目录,执行步骤3) 3. `git remote set-url --push origin http://ip/score-group/rest-score.git` 其中的`http://ip/score-group/rest-score.git`为需要迁移的目标目录 4. `git push --mirror` 执行完上面的步骤之后,迁移工作也就完成了,可以打开新的git仓库看一下,跟以前仓库得项目完全一样,只是改变了url,达到了最终的目的。 备注:也可以向镜像仓库中提交代码,然后到镜像仓库目录中执行第4步,通过镜像提交的方式推送到源仓库。 ### git更换仓库地址: ``` git remote set-url origin git@git.webx.top:admpub/coscms.git ```
Prev:
git 查看某一个文件的(提交/修改)记录
Next:
安装包管理工具choco
0
likes
228
Weibo
Wechat
Tencent Weibo
QQ Zone
RenRen
Table of content