Basic Git Cheatsheets:基本的Git工作流程速查表 源码

上传:vision91945 浏览: 14 推荐: 0 文件:ZIP 大小:2.42KB 上传时间:2021-04-07 03:08:39 版权申诉
基本的Git速查表 检查Git仓库的状态 git status命令在Git存储库中使用,以显示工作目录和暂存区的状态。 git status的输出可以有很大的不同,并且通常包含有用的消息以指导用户管理其存储库。 例如,git status将在运行git commit之前向用户显示他们将通过运行git commit提交的文件以及可以通过运行git add提交的文件。 git status命令示例 $ Edit example.py $ git status example.py is listed under "Changes not staged for commit" git add example.py $ git status example.py is listed under "Changes to be committed" $ git commit $ git
上传资源
用户评论