-
How to set meld for git diffEngineer/Linux 2011. 11. 2. 17:14found the great tool,meld which shows diff of source on GUI.
Lets start using this fantastic tool
1. Install
sudo apt-get install meld
2. setting
1) git config --global diff.external meld
2) create diff.py on ur home directory.
#!/usr bin python
import sys
import os
os.system('meld "%s" "%s"' % (sys.argv[2] , sys.argv[5]))
3) set conf
git config --global diff.external ~/diff.py
git diff filename
the : 그, 정관사, 그만큼'Engineer > Linux' 카테고리의 다른 글
Tip in vim (0) 2011.11.22 How to install bugzilla on ubuntu 11.10 (0) 2011.11.04 ubuntu 11.10 tooltip color 수정 (0) 2011.10.19 여러 파일중 특정 문자 변경 (0) 2011.06.30 kernel (0) 2011.06.02