标签:filename ext his name add 本地 通过 .com 文件
1.初始化
git init
2.提交文件
git add filename.xxx
3.commit
git commit -m "why commit this file"
4.push
git push -u origin master
以上完成了将文件push到远程仓库中。
5.下载远程库
git clone https://github.com/***/****.git
6.查看本地仓库与远程库区别
git status
7.删除远程库的文件(本地不存在,通过上个命令知道)
git rm filenaem.xxx git commit -m "commit context" git push -u origin master
标签:filename ext his name add 本地 通过 .com 文件
原文地址:https://www.cnblogs.com/ys99/p/9126912.html