Generate patch through git diff

http://stackoverflow.com/questions/1191282/how-to-see-the-changes-between-two-commits-without-commits-in-between

you can simply pass the 2 commits to git diff like :

-> git diff 0da94be  59ff30c > my.patch
-> git apply my.patch

error: cannot apply binary patch to 'UKERecognition/UKIncentive.Web/static/img/rose.jpg' without full index line

https://stackoverflow.com/questions/17152171/git-cannot-apply-binary-patch-without-full-index-line

Checkout the branch from which you want to create the patch. Run this command:

git diff-index 79fd4d7 --binary > ~/Desktop/my-patch

Where 79fd4d7 is a placeholder for the commit that came right before the range of commits you want to diff. (e.g. I want a patch that contains the first three commits below:

No such file or directory

https://drupal.stackexchange.com/questions/13387/applying-a-patch-doesnt-work

It is possible that the patch was rolled before the days of Git on drupal.org.

For old patches:

patch -p0 < thepatch.patch

For new patches that mysteriously fail with git apply:

patch -p1 < thepatch.patch

git diff show file name only

https://stackoverflow.com/questions/9848347/can-i-make-git-diff-only-show-the-changed-file-names-and-line-numbers/55225156#55225156

clu@WASYGSHA01-1020 MINGW64 /c/repository/GitHub/ChuckLu/Test/HearthbuddyRelease (master)
$ git diff --stat
JitProfiles/JitProfile.jpf | Bin 25040 -> 16040 bytes
Routines/DefaultRoutine/Silverfish/ai/CardDB.cs | 396 +++
.../DefaultRoutine/Silverfish/ai/ComboBreaker.cs | 32 +-
.../Silverfish/behavior/control/_mulligan.txt | 16 -
.../DefaultRoutine/Silverfish/data/_carddb.txt | 2562 +++++++++++++++++++-
Settings/Global/GlobalSettings.json | 2 +-
6 files changed, 2974 insertions(+), 34 deletions(-)

最新文章

  1. Python 操作 MS Excel 文件
  2. java 基础导航
  3. Java 利用HttpURLConnection发送http请求
  4. jquery满屏滚动代码
  5. Java 多继承
  6. 高性能MySQL——第一章MySQL的架构与历史
  7. Java实现多线程邮件发送
  8. 新浪微博SSO登陆机制
  9. iOS音频篇:AVPlayer的缓存实现
  10. 【亲测可用】MySQL 4.1迁移到MySQL 5.0版本的中文乱码问题解决
  11. 对面向对象的理解—— SAP电面(1)
  12. Unity3D ——强大的跨平台3D游戏开发工具(二)
  13. Apache设置404页面
  14. [BZOJ]3243 向量内积(Noi2013)
  15. fiddler模拟弱网测试点
  16. 【开发者笔记】python中的类方法(@classmethod)和静态方法(@staticmethod)
  17. gcc 与 glibc 的关系 glibc版本查看
  18. 使用 CSV 文件存储
  19. [UI] Article intro effects
  20. .NET快速查找某个类所在的命名空间

热门文章

  1. parallels desktop虚拟机与Mac共享网络设置方法
  2. Python服务端工程师就业面试指导✍✍✍
  3. 004-Java进制转换
  4. 在普通类中获取Spring管理的bean
  5. ionic js 滑动框ion-slide-box 滑动框是一个包含多页容器的组件,每页滑动或拖动切换
  6. await和async
  7. Spring Boot环境搭建。
  8. js清空input file值
  9. thinkphp 模型定义
  10. 最大流dicnic——hdu1532模板题