码迷,mamicode.com
首页 > 其他好文 > 详细

Git指令集

时间:2016-11-29 14:44:41      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:status   tor   仓库   历史记录   初始化   director   指令   dir   git push   

删除远程仓库中的某个文件

git rm -r --cached some-directory
git commit -m ‘Remove the now ignored directory "some-directory"‘
git push origin master

初始化仓库

git init

查看仓库的状态

git status

向暂存区中添加文件

git add

保存仓库的历史记录

git commit

查看提交日志

git log

查看更改前后的差别

git diff

添加远程仓库

git remote add

推送至远程仓库

1.推送至master分支

git push -u origin master

2.推送至master以外的分支

例如:在本地仓库创建了feature-D分支;

git checkout -b feature-D
git push -u origin feature-D

Git指令集

标签:status   tor   仓库   历史记录   初始化   director   指令   dir   git push   

原文地址:http://www.cnblogs.com/gary-gj/p/6113202.html

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