首页 > TAG信息列表 > mybranch

git 常见命令和资源

git练习 常用git清单 强制切换分支所指位置 git branch -f main c3强制分支main指向c3 git branch -f main HEAD~3强制分支main指向head的父节点再往前3个 git checkout c3将HEAD指向c3 reset 和 revert 比如现在我们远程分支和本地分支的版本一样,现在本地进行reset,但是远程是感知

工具类1:git常用操作

一、基本操作 1、新建一个项目需要初始化才能有master分支 git add . git commint -m 'xx' 2、分支操作 创建分支: git branch mybranch切换分支: git checkout mybranch 查看本地/远程分支: git branch -a创建并切换分支: git checkout -b mybranch 创建切换到分支并和远程分支建

Git命令之不要使用rebase的场景

rebase命令不要使用的场景 场景1: ​ 永远不要在公共分支上使用rebase命令 ​ 这个我就不举例了,可以直接参考 ​ https://git-scm.com/book/zh/v2/Git-分支-变基 场景2: ​ 合并到测试分支时用merge方式,不要用rebase方式 ​ 当你从master分支拉出一条分支来进行开发,开发完后需要进

Git命令行2

一、拉取项目 1、进入文件夹 cd /Users/cr/Desktop/git   2、查看远程仓库地址    3、执行如下代码 #拉取代码 crdeMacBook-Pro:git cr$ git clone http://gitlab.xxx.xxx/root/gitteset.git Cloning into 'gitteset'... remote: Enumerating objects: 6, done. remote: Co

git一些概念

git中的HEAD、head和master https://juejin.cn/post/6844903493078089736 git中refs/for/mybranch 和 refs/heads/mybranch https://blog.csdn.net/qq_31411389/article/details/77045719 简单点说,就是refs/for/mybranch需要经过code review之后才可以提交;refs/heads/mybranch

git 创建一个新的空的branch

Create an orphan branch git checkout --orphan mybranch Delete everything in the branch git rm -rf . Make some changes & commit touch test.txt git add test.txt git commit -m “Adding a test file” Push commits made on the local branch to the remo

git command

1.git 创建分支:git branch mybranch 切换分支:git checkout mybranch 创建并切换分支:git checkout -b mybranch 查看分支:git branch 切换分支:git checkout v1 将本地代码更新至与远程仓库一致:git pull 2.提交代码 添加或者修改文档:git add file1.txt 删除文档:git rm file2.txt 添