当前位置:   article > 正文

git 随记

git 随记

git 换源

# 查看git当前源
git remote -v 
# 删除当前源
git remote remove origin
# 添加新源
git remote add origin http://github.com.....
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

git查看配置

# 查看系统配置
git config --system --list
# 查看全局配置
git config --global --list
# 查看当前仓库配置
git config --local --list
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

git开发分支强制覆盖master分支

# 1.切换到dev分支
git checkout dev
# 2.将本地dev分支代码强制推送到远程master上
git push origin dev:master -f
# 3.切换到master分支
git checkout master
# 4.下载远程仓库最新内容,不做合并
git fetch --all
# 5.把HEAD指向master最新版本
git reset --hard origin/master


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

问题解决

push时出现 “unable to access ‘https://github.com/…/.git‘: Could not resolve host: github.com”

# 取消使用代理即可
git config --global --unset http.proxy
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/698309
推荐阅读
相关标签
  

闽ICP备14008679号