赞
踩
git bash:
添加至缓存区:
git add "11.txt" 添加指定文件
git add . 添加所有文件
查看缓存区文件:
git ls-files
删除缓存区文件:
git rm -r --cached . 删除所有缓存区文件
git rm -r --cached "11.txt" 删除指定缓存区文件
git rm -rf . 删除所有暂存区的文件及工作区的物理文件
提交至本地库:
git commit -m "备注"
git commit 此命令会进入vim编辑器编辑备注
上传至远程库:
git push
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。