Skip to content

Instantly share code, notes, and snippets.

@falexandre
Forked from MarcosX/git_meld_install.sh
Created June 23, 2014 18:30
Show Gist options
  • Save falexandre/72cdb03b12a2166c3575 to your computer and use it in GitHub Desktop.
Save falexandre/72cdb03b12a2166c3575 to your computer and use it in GitHub Desktop.
#!/bin/bash
echo "Installing meld..."
apt-get install meld -y -qq
echo "Meld [OK]"
echo "Creating meld custom script..."
rm ~/.config/git_meld_diff.sh
touch ~/.config/git_meld_diff.sh
echo "#!/bin/bash" >> ~/.config/git_meld_diff.sh
echo "meld \"\$5\" \"\$2\"" >> ~/.config/git_meld_diff.sh
chmod +x ~/.config/git_meld_diff.sh
echo "Meld custom script [OK]"
echo "Configuring git diff external..."
git config --global diff.external ~/.config/git_meld_diff.sh
echo "Git configuration [OK]"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment