git命令行 如何配置merge图形工具?
黄舟
黄舟 2017-05-02 09:27:56
0
2
582

在命令行下使用git,merge很不方便,怎么配置图形工具?

黄舟
黄舟

人生最曼妙的风景,竟是内心的淡定与从容!

reply all(2)
Ty80
[diff]
  tool = tortoisediff
[difftool]
  prompt = false
[merge]
  tool = tortoisemerge
[mergetool]
  prompt = false
  keepBackup = false

[difftool "tortoisediff"]
cmd = "TortoiseMerge.exe" -mine:"$REMOTE" -base:"$LOCAL"

[mergetool "tortoisemerge"]
cmd = "TortoiseMerge.exe" -base:"$BASE" -theirs:"$REMOTE" -mine:"$LOCAL" -merged:"$MERGED"

It’s really fun to use the command line with tortoisemerge

PHPzhong

As long as the system has image operation, there are a lot of GUI Git clients, which can operate Git very conveniently. I recommend one of them: SourceTree, which is full-featured and cross-platform.
https://www.sourcetreeapp.com/

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!