Github仓库的创建我们想要在全球最大的同性交流网站上提交你自己本地的版本仓库,那么首先就需要注册一个Gtihub账号,具体的操作无非就是邮箱注册这些,为了方便演示,我初始化了我本地的版本仓库,并创建了一个FirstfileThis is the first line and commitSEELE@DESKTOP-RHPQ0IE MINGW64 /F/Gitfile (master)
$...
标签与diffGit标签新建标签,标签有两种:轻量级标签(lightweight)与带有附注标签(annotated)创建一个轻量级标签git tag v1.0.0创建一个带有附注的标签git tag -a v1.0.1 -m 'release version'删除标签git tag -d tag_name我们先创建一个轻量级标签:A@DESKTOP-6DP8MG1 MINGW64 /e/G...
checkout进阶与stashcheckout --讲解我们先查看下git status是否正常,然后再编辑test1.txt增加了no hallo:$ cat test1.txt
hello
world
hello world
hello hello hello
no hello这时候我们再查看一下:$ git status
On branch master
Changes not st...