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

git基本操作

时间:2017-09-16 23:26:41      阅读:446      评论:0      收藏:0      [点我收藏+]

标签:reset   2-2   log   ase   ini   res   png   file   仓库   

技术分享

 

一、分支操作
git init
初始化仓库
 
git status
查看仓库变化
 
git add
从工作树提交到暂存区
git commit
从暂存区提交到本地仓库
git commit --amend
修改上条记录的备注
git commit -am ‘comment‘
提交到暂存区和本地仓库
 
git diff
工作树和暂存区插播
git diff HEAD
工作树和最本地仓库的差别
 
git checkout -- filename
撤销工作需修改(修改、删除)
 
git log [filename]
查看提交日志
git log --graph
以图表形式查看日志
 
 
2、分支操作
git branch
查看所有分支
 
git checkout -b branchname
创建并切换到分支branchname
 
git checkout -
切到上个分支
 
git merge --no-f fbranch
合并fbranch到当前分支
 
git reset --hard hashvalue
回溯到版本hashvalue
 
git rebase -i HEAD~2
更改log记录
 
3、远程操作
git remote add origin path
添加远程仓库,将origin设置为远程仓库名称
 
git push -u origin branchname
将当前分支仓库推送到 远程分支branchname
 
git pull origin branchname
将远程分支branchname更新到当前分支
 
 

 

git基本操作

标签:reset   2-2   log   ase   ini   res   png   file   仓库   

原文地址:http://www.cnblogs.com/xiaoxiaocaicai/p/7532987.html

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