当前位置:   article > 正文

Git分支-3_stderr: remote: enumerating objects: 211526, done.

stderr: remote: enumerating objects: 211526, done.

1.分支操作

[root@fengxi ~]# cd /data/gitroot   //进入gitroot 的仓库下
[root@fengxi gitroot]# git branch  //查看分支
* master
[root@fengxi gitroot]# git branch lsk  //创建分支
[root@fengxi gitroot]# git branch
  lsk
* master
[root@fengxi gitroot]# git checkout lsk  //切换到lsk分支下
Switched to branch 'lsk'
[root@fengxi gitroot]# git branch  
* lsk
  master
  //再用git branch查看,会看到有两个分支master和lsk,当前使用的分支前面会有一个*在lsk分支下 ,编辑2.txt,并提交到新分支
[root@fengxi gitroot]# ls
1.txt
[root@fengxi gitroot]# echo "guojian" > 2.txt
[root@fengxi gitroot]# git add 2.txt   //将2.txt添加至仓库
[root@fengxi gitroot]# git commit -m"new file 2.txt"   //使用git commit -m "注释"把它提交到版本库:
[lsk e7265d4] new file 2.txt
 1 file changed, 1 insertion(+)
 create mode 100644 2.txt
[root@fengxi gitroot]# ls   //查看
1.txt  2.txt
[root@fengxi gitroot]# git checkout master   //切换回master分支
Switched to branch 'master'
[root@fengxi gitroot]# git branch  //查看分支
  lsk
* master
[root@fengxi gitroot]# ls
1.txt
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30

(2)分支的合并

[root@fengxi gitroot]# git checkout master   //合并分支之前,切换回master分支
Switched to branch 'master'
[root@fengxi gitroot
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/510981
推荐阅读
相关标签
  

闽ICP备14008679号