1.git拉取gitlab仓库文件到本地
- 打开git,cd到需要存储文件的文件夹(也可直接在该文件夹下右键点击git bash)
bash
复制代码
cd /f/gitfile
- 输入git clone url(url为你需要拉取仓库的地址)
bash
复制代码
git clone http://192.168.52.5/d9_test/doc.git
2.本地修改后上传
- 本地修改后- 使用git add 将你修改的文件上传,全部上传使用git add .
bash
复制代码
git add .
- 执行git commit -m "添加注释标示更新"
bash
复制代码
git commit -m "注释"
- git push 上传,可能需要输入gitlab账号和密码按提示输入即可
bash
复制代码
git push origin master
3.常用命令
git status
,查看本地与git的文件状态差异
- 执行
git add <文件名>
,回车,即可上传文件夹
git commit -m "注释"
,添加注释
git push -u origin master
,加了参数-u后,以后即可直接用git push 代替git push origin master
git restore --staged <文件名>
,撤销到缓冲区的提交
git rm --cached <文件路径>
,不删除物理文件,仅将该文件从缓存中删除
git rm --f <文件路径>
, 不仅将该文件从缓存中删除,还会将物理文件删除(不会回收到垃圾桶)。