1.将文件从工作区提交到暂存区。
在当前目录下,通过git add命令,把文件添加到仓库中。
$ git add main.cpp
git add是将文件从工作区提交到暂存区(stage)。
注:在运行该命令后,成功不会有任何提示。Unix哲学是“ No news is good news!”
【git添加文件到版本库中】2.将暂存区文件提交到仓库分支。
通过git commit命令,将文件提交到仓库。
$ git commit -m "Hello, World!"
[master (root-commit) 6556408] Hello, World!
1 file changed, 6 insertions(+)
create mode 100644 main.cpp
git commit是将暂存区的全部文件提交到分支。
推荐阅读
- transformer|Swin-Transformer代码讲解-Video Swin-Transformer
- git使用技巧备忘(持续更新。。。)
- git 高级操作
- 同步GIT仓库的操作 -- pull命令
- git|git简单命令
- Git|Tomcat 自定义错误页面(例如404页面等等)
- 本地项目添加到gitee仓库管理
- centos|搭建Git服务器
- Git clone~fatal: protocol '?http' is not supported。解决办法。
- github开通,史上最全demo集合,各种demo持续更新中