Git 添加文件
Posted max-hou
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git 添加文件相关的知识,希望对你有一定的参考价值。
向仓库添加文件只要3步
1、添加文件,复制文件到testgit目录下
2、执行git add 文件名 命令
# git add Hello.txt
3、执行提交命令
# git commit -m "first commit"
运行结果
1
2
3
|
[master(根提交) fc56011] first commit 1 file changed, 1 insertion(+) create mode 100644 Hello.txt |
4、推送,使用命令git push
1
|
git push |
以上是关于Git 添加文件的主要内容,如果未能解决你的问题,请参考以下文章
VSCode自定义代码片段15——git命令操作一个完整流程