Skip to content

Instantly share code, notes, and snippets.

@stormslowly
Forked from p1nox/using_meld_on_mac.md
Created August 9, 2013 08:38
Show Gist options
  • Save stormslowly/6192067 to your computer and use it in GitHub Desktop.
Save stormslowly/6192067 to your computer and use it in GitHub Desktop.

Using Meld merging tool on Mac

  1. Install XQuartz

  2. Install meld with brew

     brew install meld
    
  3. Copy PYTHONPATH

     brew info pygtk
    
  4. Paste in ~/.bashrc or ~/.zshrc result of previous step

     export PYTHONPATH=/usr/local/lib/python2.7/site-packages:$PYTHONPATH
    
  5. Set meld as your default git mergetool

     git config --global merge.tool meld
    
  6. Go find your conflicts!

Source: Homebrew/legacy-homebrew#20644

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment