Are you in the loop? Keep up with the latest by making sure you're subscribed to Community Announcements. Just click Watch and select Articles.

×
Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Custom actions no longer working

Custom actions are not working properly as of Windows Sourcetree 3.3.4. In particular they don't seem to execute an external .bat script. Nothing happens.

Furthermore, there doesn't seem to be any way to report a bug for the latest versions.

Here is a similar (possibly the same) bug report for a previous version. It's unclear if this bug report is being monitored, so I have posted here.

https://jira.atlassian.com/browse/SRCTREEWIN-12355?filter=-4&jql=text%20~%20%22custom%20action%22%20order%20by%20created%20DESC

12 answers

Just to follow up, I downloaded and installed the older version 3.2.6, which is still the one linked on the Sourcetree homepage, and now custom actions and terminal are working properly. It seems updates have been disabled as well.

https://sourcetreeapp.com/?v=win

 

It seems the Sourcetree team are phasing the release and I was one of the guinea pigs.

https://community.atlassian.com/t5/Sourcetree-questions/How-could-I-get-the-3-3-4-version/qaq-p/1237877

Thanks, same problem as I also received the 3.3.4 update

I've noticed I cannot run Custom Actions also with the 3.3.x releases, still an issue with 3.3.8.

I just discovered this does not work too. 3.3.7 here

I am also facing this problem in 3.3.6 - My custom actions do not even show up when I right-click on selected files...

I'm on 3.3.6 and have the same problem.

This is a really useful feature. When can we get this fixed, Atlassian?

I just installed on a new system and I can't set up my custom action to diff a commit to the one before it.  I don't have "open separate window" checked.

Even putting just git with a param of diff fails.  On my older system with an older version of source tree I'm able to use Beyond Compare (via git difftool) to compare a commit with the previous one.

My issue was git.exe wasn't on my system path.  Once I added it things started working.

FYI The problem persists in version 3.3.9 but the fix with unchecking "Open in a separate window" still works

While the solution above does work, my problem is that I do need a custom action to run in a separate window, since it's a process that does several merges and can pause to let the user correct any merging conflicts.

Posting this here for more visibilty. Source: https://community.atlassian.com/t5/Sourcetree-questions/Custom-actions-no-longer-working/qaq-p/1219284#M36507

 

To make custom actions work, you need to make sure "Open in a separate window" is NOT ticked. This is found in the properties of each custom action you create/edit.

Still issue in 3.3.8 , Atlassian please help!

Still an issue. Version 3.3.7

After I installed ver. 3.3.7 few days ago the Custom Actions stopped working, no matter what I did there was nothing, not even an error. After some googling I ended up here and subscribed to this issue to get any update.

I don't know what happened, but yesterday when I tried to create a custom action - it worked! I have no idea what has happened, the version of SourceTree remains the same: 3.3.7.

Here's my action definition:

<?xml version="1.0" encoding="utf-8"?>
<ArrayOfCustomAction xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<CustomAction>
<Caption>Compare Commits</Caption>
<Target>C:\Program Files\Git\bin\git.exe</Target>
<Parameters>difftool --dir-diff $SHA</Parameters>
<OpenInSeparateWindow>false</OpenInSeparateWindow>
<ShowFullOutput>false</ShowFullOutput>
<IsSilent>true</IsSilent>
</CustomAction>
</ArrayOfCustomAction>

Here's a GIF showing that it really works.

https://drive.google.com/file/d/1MT4dL8Wsdqe-0b6t6bGN6n237hYuSr09/view?usp=sharing

hi,all,

Yes, It's real!!
I try it, SourceTree v3.3.8

 

1. Please don't make "Open in a seperate window" checked.

2. Then restart SourceTree. And try it.

It's worked.

The issue looks like "Open in a seperate window".

Like # people like this

Confirmed - I've unticked "Open in a separate window" in each Custom Action and they work!

Custom Action doesnt work in SourceTree v3.3.9.
Same Solution:

1. Don't make "Open in a seperate window" checked.

2. Then restart SourceTree. And try it.

3.2.6 works, download the archived version from here:

https://www.sourcetreeapp.com/download-archives

 

3.3.8 (latest version as of 04-21-2020) doesn't work.

Same problem here. Custom actions not working anymore. 

The notepad custom action below doesn't even show up. The other show but don't work.

SourceTree Version: 3.3.6

My file C:\Users\{username}\AppData\Local\Atlassian\SourceTree\customactions.xml
<?xml version="1.0"?>
<ArrayOfCustomAction xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<CustomAction>
<Caption>Copy repository path</Caption>
<Target>cmd</Target>
<Parameters>/C echo $FILE | clip</Parameters>
<OpenInSeparateWindow>false</OpenInSeparateWindow>
<ShowFullOutput>true</ShowFullOutput>
<IsSilent>true</IsSilent>
</CustomAction>
<CustomAction>
<Caption>List branches with the commit</Caption>
<Target>C:\Program Files\Git\cmd\git.exe</Target>
<Parameters>branch --all --contains $SHA</Parameters>
<OpenInSeparateWindow>false</OpenInSeparateWindow>
<ShowFullOutput>true</ShowFullOutput>
<IsSilent>true</IsSilent>
</CustomAction>
<CustomAction>
<Caption>List tags with the commit</Caption>
<Target>C:\Program Files\Git\cmd\git.exe</Target>
<Parameters>tag --contains $SHA</Parameters>
<OpenInSeparateWindow>false</OpenInSeparateWindow>
<ShowFullOutput>true</ShowFullOutput>
<IsSilent>true</IsSilent>
</CustomAction>
<CustomAction>
<Caption>Open In notepad++</Caption>
<Target>notepad++</Target>
<Parameters>$FILE</Parameters>
<OpenInSeparateWindow>true</OpenInSeparateWindow>
<ShowFullOutput>false</ShowFullOutput>
<IsSilent>true</IsSilent>
</CustomAction>
</ArrayOfCustomAction>

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events