Skip to content
Chen Huajun edited this page Apr 20, 2020 · 2 revisions

1. 从github上clone仓库太慢,并且老是失败怎么办?

  1. 先在github上clone一个自己的pgdoc-cn仓库

  2. 然后从gitee镜像仓库初始clone pgdoc-cn

    git clone https://gitee.com/postgres-cn/pgdoc-cn.git
    
  3. 最后修改remote源到github

    git remote del origin
    git remote add origin git@github.com:${你在github的账号}/pgdoc-cn.git
    git pull origin master
    
Clone this wiki locally