Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我发现了这个拉取请求#3465,它说在开发分支中挑选了樱桃。
我尝试切换到开发分支,它确实删除了 tern 端口文件,但我也发现开发分支中有一些键绑定不起作用(如SPC w c)。
SPC w c
所以我想使用master分支,但是我找不到任何方法来禁用生成tern端口文件......
我应该怎么办 ?
听起来你可以用 git 解决这个问题。
cd ~/.emacs.d/ git checkout master git checkout -b my-branch git cherry-pick 73031fd7f20c2b5c5fb55a067f0c1fddc387152c # commit from #3465
您现在应该进行这些更改。
要更新,请执行以下操作:
cd ~/.emacs.d/ git fetch origin git merge origin/master