常用git commond 锦集

#查看
git log
git log ./kernel/driver/
git show 17228ec1630f6b47983870b3eddc90d4088dcc88 --name-only
//下载 
git clone https://github.com/wh19910525/my_often_shell.git 
git branch
git branch -a
git checkout branch1 //switch to an local branch
git checkout -t remot_branch2 //download and switch to an remote branch
git checkout /kernel/driver/ //将指定目录下的文件还原成服务器上的内容
//提交
git status .
git add .
git checkout -- hardware/realtek/rtl_8723bs/8723bs.mod.c //discard this files
git commit -m "this my first commit"
git push
//生成补订
git format-patch -1 hash // git format-patch -1 300830d0286bceca191d926bc2cf4d08cc58b813   
//先检查patch文件:# git apply --stat newpatch.patch 
//检查能否应用成功:# git apply --check newpatch.patch 
//打补丁:# git am --signoff < newpatch.patch
git am xx.patch
//new branch
git branch // list
git branch my_new_branch //  add a new branch at local
git checkout my_new_branch // switch to local branch
git push origin my_new_branch:my_new_branch //push to remote server.
//
git revert 9ca532610fa179911b23e244c96db10c140639f2 // 取消某次提交

//
git checkout . // 还原(覆盖)本地的修改

//
git cherry-pick  9ca532610fa179911b23e244c96db10c140639f2  //将远程分支对应的补丁打过来。

删除分支: 
1 删除远程分支 
$ git push origin :branchName 
2 删除本地分支,强制删除用-D 
$ git branch -d branchName
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值