git仓库代码管理
方便多人协作开发
前端小码仔
学习如逆水行舟,不进则退
展开
-
Git切换远程仓库地址
有时候,我们用着用着就要迁移git地址,这时就要切换远程仓库地址。那这时候有什么办法解决呢?有三种办法一、修改命令 (推荐)git remote set-url origin url二、先删后加git remote rm origingit remote add origingit@github.com:lwtcumt/test.git三、修改config文件如果你的项目有加入版本控制,那可以到项目根目录下,查看隐藏文件夹, 发现.git文件夹,找到其中的config..原创 2021-05-24 14:21:25 · 176 阅读 · 0 评论 -
Git pull 强制拉取并覆盖本地代码
git fetch --allgit reset --hard origin/mastergit pull转载 2020-05-27 10:32:07 · 333 阅读 · 0 评论 -
码云的用法及如何上传项目(亲测好用)
1、如何使用码云:https://jingyan.baidu.com/article/cdddd41cb7466853cb00e1d5.html2、如何上传项目:https://jingyan.baidu.com/article/c1465413e4fc8b0bfdfc4c6f.html推荐好文:https://blog.csdn.net/gxx_csdn/article/details...原创 2019-11-04 03:07:23 · 294 阅读 · 0 评论