git常用操作

提交代码

git push origin master

显示当前源码log

git log --graph

生成补丁

git diff commit1 commit2 >kernel.patch

打补丁

git apply kernel.patch

生成两个版本之间的补丁,并指定生成到目录里

git format-patch commit1...commit2 -o kernel_patch_dir #export patch ,kernel_patch_dir is the dir of store

打补丁

git am kernel_patch_dir/*.patch #do this patch
上一篇:神奇的datetime和datetime,一毫秒引发的血案


下一篇:技术干货 | 深度解构 Android 应用面临紧急发版时的救星方案:mPaaS 热修复——DexPatch