自学内容网 自学内容网

Git开发常用命令总结

克隆仓库

git clone --depth 3 -b 17.0 --single-branch https://github.com/odoo/odoo.git odoo17

参数说明:

  • --depth 3 : 只克隆最近提交的3条记录到本地。
  • -b 17.0 --single-branch : 只拉取分支 17.0

拉取仓库

git pull <远程主机名> <远程分支名>:<本地分支名>

git pull origin master:master

新建和切换分支

  • https://git-scm.com/docs/git-branch/zh_HANS-CN
  • https://git-scm.com/docs/git-switch/zh_HANS-CN
# 创建全新的空白分支 git version < 2.23 
git checkout --orphan <branch>

# 创建全新的空白分支 git version >= 2.23 
git switch --orphan <new_branch_name>

git switch和git checkout

远程库增删改查

git remote add <远程库名> <远程库地址>
git remote remove <远程库名>
git remote rename <原远程库名> <新远程库名>
git remote set-url <远程库名> <远程库地址>

# 查看所有远程库信息
git remote -v

git 创建空分支 https://blog.csdn.net/linyichao1314/article/details/136956650
Git 实用技巧2——新建空白分支 | 重命名分支 | 回退到历史 commit https://blog.csdn.net/m0_49270962/article/details/137759940


原文地址:https://blog.csdn.net/WHQ78164/article/details/144697277

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!