沙滩星空的博客沙滩星空的博客

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

新建和切换分支

# 创建全新的空白分支 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
未经允许不得转载:沙滩星空的博客 » Git开发常用命令总结

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址