赞
踩
- mkdir product
- cd product
- git init
- git clone /path/to/repository
- git clone username@host:/path/to/repository
你的本地仓库由git
维护的三棵“树”组成。第一个是你的工作目录,它持有实际文件;第二个是 缓存区(Index)
,它像个缓存区域,临时保存你的改动;最后是 HEAD
,指向你最近一次提交后的结果。
通常在改动文件或添加文件后,在提交之前需要把改动的文件添加到缓存区,可以通过如下命令查看有哪些改动:
- git status
但如,如果你想看到具体的改动内容,可以用以下命令:
- git diff <filename>
然后使用如下命令把文件添加到缓存区,也就放心多了。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。