Git 使用备忘录
本文只是笔者在使用Git过程中的总结的一些小经验,随时更新,请长期关注:
查看某个文件的修改记录是我们经常要用到的,如果使用SVN可以使用下面的命令
git merge --no-ff main~4 git merge -s ours main~3 git merge --no-ff maint
?