
Git
Git is easy to learn and has a tiny footprint with lightning fast performance.
让梦想疯狂
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
使用Github Actions自动同步到Gitee仓库
Github Actions是Github推出的自动化CI/CD的功能,我们将使用Github Actions让Github仓库同步到Gitee。原创 2022-11-04 21:46:59 · 1236 阅读 · 0 评论 -
Git常用命令
分支 # 从当前分支中新建分支,但依然停留在当前分支 $ git branch [branch-name] # 新建一个分支,并切换到该分支 $ git checkout -b [branch] # 切换到指定分支,并更新工作区 $ git checkout [branch-name]原创 2021-12-10 09:53:39 · 348 阅读 · 0 评论