码迷,mamicode.com
首页 > Windows程序 > 详细

win7系统git学习笔记(一)

时间:2014-10-17 01:34:13      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   ar   for   sp   文件   

git仓库里的文件只有两种状态,一种是已跟踪(tracked),一种是未跟踪(untracked)。已跟踪的文件中又分为未更新(unmodified),已修改(modified),已放入暂存区(staged)。

常用命令:

初始化仓库:

$ git init

 

 fork:

$ git clone git://github.com/schacon/grit.git
$ git clone git://github.com/schacon/grit.git  新的文件名

检查文件状态:

$ git status

创建新的文件

$ touch 文件名

跟踪新文件(放入暂存区)/在修改文件后,把文件加入暂存区

$ git add 文件名

commit(快照)文件并对这次的修改进行说明。

$ git commit -m ‘说明信息‘

 push你的commit

$ git remote add 名字(对这次的push命名) http://github.com/username/要push的文件名
$ git push 名字 master 

删除工作目录中的文件(不在暂存区)/删除git仓库中的文件(在暂存区):

$ git rm 文件名
$ git rm -f 文件名

删除git仓库中的文件(暂存区文件)

$ git rm --cached 文件名

 

常见错误:

 $ git remote add practise https://github.com/shangshicc/GitPractise

错误提示:fatal: remote practise already exists.

解决办法:$ git remote rm practise.

 

参考资料:http://git.oschina.net/progit/2-Git-%E5%9F%BA%E7%A1%80.html#2.2-%E8%AE%B0%E5%BD%95%E6%AF%8F%E6%AC%A1%E6%9B%B4%E6%96%B0%E5%88%B0%E4%BB%93%E5%BA%93

      http://blog.csdn.net/benweizhu/article/details/8492493

             http://blog.csdn.net/god_wot/article/details/10522405

     

 

win7系统git学习笔记(一)

标签:style   blog   http   color   os   ar   for   sp   文件   

原文地址:http://www.cnblogs.com/shangshicc/p/4029726.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!