
git
蜗牛逐日
这个作者很懒,什么都没留下…
展开
-
git常用命令纪录
1、查看用户名和地址 git config user.name git config user.email 2、修改用户名和地址 git config --global user.name “your name” git config --global user.email “your email”原创 2019-03-05 17:35:00 · 208 阅读 · 0 评论 -
git patch的使用
1 使用git format-patch生成所需要的patch: 当前分支所有超前master的提交: git format-patch -M master 某次提交以后的所有patch: git format-patch 4e16 --4e16指的是commit名 从根到指定提交的所有patch: git format-patch --root 4e16 某两次提交之间的所有patch: git...原创 2019-08-22 11:37:56 · 2087 阅读 · 0 评论