$HOME/.profilegit confi_git使用tortoisesvn">
当前位置:   article > 正文

git使用tortoisesvn为合并工具-----我的.gitconfig文件

git使用tortoisesvn

git的设置,.gitconfig文件内容如下:

# 全局提交用户名与邮箱
git config --global user.name "Yuchen Deng"
git config --global user.email 邮箱名@gmail.com

# 中文编码支持
echo "export LESSCHARSET=utf-8" > $HOME/.profile
git config --global gui.encoding utf-8
git config --global i18n.commitencoding utf-8
git config --global i18n.logoutputencoding gbk

# 全局编辑器,提交时将COMMIT_EDITMSG编码转换成UTF-8可避免乱码
git config --global core.editor notepad2

# 差异工具配置
git config --global diff.external git-diff-wrapper.sh
git config --global diff.tool tortoise
git config --global difftool.tortoise.cmd "TortoiseMerge -base:'$LOCAL' -theirs:'$REMOTE'"
git config --global difftool.prompt false

# 合并工具配置
git config --global merge.tool tortoise
git config --global mergetool.tortoise.cmd "TortoiseMerge -base:'$BASE' -theirs:'$REMOTE' -mine:'$LOCAL' -merged:'$MERGED'"
git config --global mergetool.prompt false

# 别名设置
git config --global alias.dt difftool
git config --global alias.mt mergetool

# 取消 $ git gui 的中文界面,改用英文界面更易懂
if [ -f "/share/git-gui/lib/msgs/zh_cn.msg" ]; then
rm /share/git-gui/lib/msgs/zh_cn.msg
fi
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33

这个脚本解决了:
1. 中文乱码
2. 图形化Diff/Merge
3. 还原英文界面,更好懂
其中最有价值的,就是Git的Diff/Merge外部工具TortoiseMerge配置。
安装MsysGit后,一个命令即可完成配置。

我的git配置:

[user]
    email = xxx
    name = zazuone
[merge]
    tool = tortoise
[mergetool]
    keepBackup = false
    prompt = false
[diff]
    tool = tortoise
    external = git-diff-wrapper.sh
[difftool]
    prompt = false
    TortoiseGitIDiff = .cmd
    tortoise = .cmd
[gui]
    encoding = utf-8
[i18n]
    commitencoding = utf-8
    logoutputencoding = gbk
[difftool "tortoise"]
    cmd = TortoiseMerge -base:'$LOCAL' -theirs:'$REMOTE'
[mergetool "tortoise"]
    cmd = TortoiseMerge -base:'$BASE' -theirs:'$REMOTE' -mine:'$LOCAL' -merged:'$MERGED'
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25

参考:http://bbs.csdn.net/topics/360008711

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/寸_铁/article/detail/947640
推荐阅读
  

闽ICP备14008679号