博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Git 一些常用命令
阅读量:5162 次
发布时间:2019-06-13

本文共 693 字,大约阅读时间需要 2 分钟。

首先是基本的:

1 git add * 2  3 git commit -a -m "commit message"   4  5 //本地提交 6  7 git remote add origin username@serverip:projectName 8  9 git push origin master10 11 git fetch git pull

 

然后是:
1 git reset HEAD^ //只回退commit 与 index信息2 //如果在服务器端的操作,想回退的话,可以用--f3 git push --f origin master //这样,服务器的版本会被强制覆盖4 git reset --hard // 代码级回退,所有东西都被回退5 git rebase -i HEAD~5 //再将除第一条pick外全部改为squash,表示将最后的5次提交合并为一次提交

 

下面是Git打差异包的命令:
[shell]
1 git archive HEAD -o diff.zip $(git diff HEAD $hash --name-only)2 OR3 git archive HEAD -o diff.zip $(git diff $hash1 $hash2 --name-only)4 #有时候会出现重命名过度的问题,用这条命令解决 git config --global diff.renamelimit "0"

 

转载于:https://www.cnblogs.com/trying/archive/2012/10/30/2863824.html

你可能感兴趣的文章
lr_start_transaction/lr_end_transaction事物组合
查看>>
CodeIgniter学习笔记(四)——CI超级对象中的load装载器
查看>>
.NET CLR基本术语
查看>>
ubuntu的home目录下,Desktop等目录消失不见
查看>>
建立,查询二叉树 hdu 5444
查看>>
[Spring框架]Spring 事务管理基础入门总结.
查看>>
2017.3.24上午
查看>>
Python-常用模块及简单的案列
查看>>
LeetCode 159. Longest Substring with At Most Two Distinct Characters
查看>>
LeetCode Ones and Zeroes
查看>>
基本算法概论
查看>>
jquery动态移除/增加onclick属性详解
查看>>
JavaScript---Promise
查看>>
暖暖的感动
查看>>
Java中的日期和时间
查看>>
Django基于admin的stark组件创建(一)
查看>>
抛弃IIS,利用FastCGI让Asp.net与Nginx在一起
查看>>
C. Tanya and Toys_模拟
查看>>
springboot jar包运行中获取资源文件
查看>>
基于FPGA实现的高速串行交换模块实现方法研究
查看>>