Skip to content

Instantly share code, notes, and snippets.

@dublado
Created July 10, 2014 12:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dublado/5b6067bc98669475faee to your computer and use it in GitHub Desktop.
Save dublado/5b6067bc98669475faee to your computer and use it in GitHub Desktop.
install meld git diff
Script para a instalação do Meld e configuração do git diff
#!/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