git常用操作

git 初始化 添加地址 强制推送


// git 仓库初始化
git init

// 删除远程地址
git remote rm origin 

// 设置远程地址
git remote add origin http://xxx.xxx.git

// 强制推送
git push -f origin master

gitlab 镜像迁徙


  // 拉取镜像
  git clone --mirror https://gitlab.xxxxx.com/xxxxx/xxxxxx.git  (旧的仓库地址)

  // 修改仓库地址
  git remote set-url --push origin  http://gitlab.xxxxx.com/xxxxx/xxxxxx/xxxxxxx.git (新的仓库地址)

  // 推送镜像
  git push --mirror http://gitlab.xxxxx.com/xxxxx/xxxxxx/xxxxxxx.git (推送 新的仓库地址)

  // 设置推送
  git config http.postBuffer 524288000
  git config --global http.lowSpeedLimit 0
  git config --global http.lowSpeedTime 999999