AS git 操作
先在项目中选中要上传的文件
点击add
commit directory&填写备注 then 点击commit bt
click push bt & confirm git pwd
git下载
http://git-scm.com/download/
git clone
在想要clone的地方,右键,git bash here
git clone [URL]
eg: git clone https://gitee.com/superreally/TCProject2021.git
git上传单个文件/夹
git add . //由于文件发生了变化所以我们要追踪文件变化特别意不要忘记add后面的点
git commit -m "Visio Test" //这里相当于一个注释告诉别人谁做了什么操作
git push -u origin master //经过上面的操作我们最终要用这个命令来将本地的文件上传到git服务器