摘要:
11.1 创建与合并分支 下面开始实战 1.执行 命令创建分支,加上 b参数表示创建并切换分支. $ git checkout b dev Switched to a new branch 'dev' 执行 命令创建分支,执行 命令切换分支. $ git branch dev $ git check 阅读全文
摘要:
创建一个文件test.txt,写入一句话 . $ echo 'this is new file !' test.txt $ cat test.txt this is new file ! 执行命令 告诉Git,添加文件到暂存区 $ git add test.txt warning: LF will 阅读全文
摘要:
文件自修改后还没有被放到暂存区,现在,撤销修改就回到和版本库一模一样的状态. 1.删除最后一行内容: $ vi README.md $ cat README.md the first ... the second ... 2.执行命令 $ git status On branch dev Chang 阅读全文