You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I am trying to set up Meld as the external diff and merge tool in Source tree on my Mac laptop. I put down Meld's file path on "Command" as shown in image below. However, when I right click a file and do external diff, the meld GUI just launches but it is not displaying the file or the diffs at all. Am I missing something in the Argument field ?
Second Question: How do I do different kinds of diff (see below) in Sourcetree ?
git diff --cached git diff git diff HEAD
Screen Shot 2014-12-04 at 3.00.12 AM.png
The instructions from https://jira.atlassian.com/browse/SRCTREE-4327 work well for me, I've just done a brew cask install meld, set the diff and merge commands to
/Applications/Meld.app/Contents/MacOS/Meld
and the arguments (as specified by the poster above):
diff: "$LOCAL" "$REMOTE"
merge: "$LOCAL" "$BASE" "$REMOTE" --auto-merge --output="$MERGED"
I had to put PATH=/usr/local/bin:$PATH meld
in the Diff command field. I have $LOCAL $REMOTES
for the arguments.
I haven't set up merge, but it'll be similar I imagine.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Did you get this working? If so any chance you could update your question with the configuration you've used?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The small text at the bottom of that screen explains the variables you can use in "Arguments".
This page explains the arguments that Meld expects: http://meldmerge.org/help/command-line.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, I saw those variables but I am not sure how to use them . Can you give me an example please ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Please give an example. Or would you like the 10 page stack trace I'm getting?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I use meld as a Visual Diff Tool. I don't think it can be used as a Merge Tool (which is 4-way). My arguments for the diff tool are: $BASE $REMOTE $LOCAL
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you prefer the files to be displayed in a different order in meld, change the order of the arguments.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.