知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

使用git之二添加与提交(学习笔记二)

发布时间:2014-09-05 14:16:42作者:知识屋

使用git之二添加与提交(学习笔记二)
 
添加和提交 
git add -i    //交互模式添加 
git add -p    //交互模式下的path模式 
 
git add somefile 
git commit -m "changes to somefile" 
git commit -m "changes to somefile" -a 
git commit -m "changes to somefile" somefile 
git config --global alias.ci "commit"  完成git ci = git commit 
 
git diff 
git diff --cached 
git diff HEAD 
 
git mv index.html hello.html 
如果不用git mv 则需要git add 新文件和git rm 旧文件 
 
忽略文件 
版本库的忽略配置文件.gitignore ".*.swp" 
编辑.git/info/exclude文件 实现本地级的忽略 ".*.swp" 
 
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜