赞
踩
git add 文件名.文件属性
git rm --cached 文件名.文件属性
在本地库创建一个文件
cat >> hello.txt //输入一些内容到hello.txt文件(若无hello.txt文件会自动创建)
注意:Ctrl + D 结束输入
说明
将hello.txt文件添加暂存区
添加完成后查看一下状态
git status
将hello.txt文件从暂存区中删除
git rm --cached 文件名.文件属性
删除后查看一下状态
hello.txt文件颜色变红了,说明已经不在暂存区了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。