
Git
万万君
Know more, do more, do better
展开
-
怎样学好Git版本控制工具
你是不是觉得自己打起游戏来,里面的技能一学就会,还印象深刻。 最近发现一个超级好玩的Git学习游戏,简单的界面,初级到高级的关卡教程与畅玩,短短几个小时下来就能掌握git常用命令和基本操作。 分享给大家,链接如下: 这是个叫做 Learning Git Branching 的项目,发现的最好的 Git 动画教程,没有之一。 它是一个开源项目,Github 项目地址: https://github.com/pcottle/learnGitBranching 教程网站地址: https://learngitbr原创 2020-05-20 11:37:33 · 171 阅读 · 0 评论 -
Git 创建分支并进行分支合并和更新
Create new branch: git checkout -b branch_name Create/link to remote sub-branch : git push --set-upstream origin branch_name Swith to sub-branch: git checkout branch_name Merge sub-branch code into m...原创 2020-04-13 14:35:09 · 526 阅读 · 0 评论