<div dir="auto">Yes that is possible, you can just import it using 'hg import' after having switched to the stable branch with 'hg update'.<div dir="auto"><div dir="auto"><br></div><div dir="auto">Best regards,</div><div dir="auto">Thomas</div></div></div><br><div class="gmail_quote"><div dir="ltr">On Tue, Oct 9, 2018, 17:48 Arun Chandrasekaran <<a href="mailto:aruncxy@gmail.com">aruncxy@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Thomas,<br>
<br>
Thanks for your reply. The patch works with default branch.<br>
<br>
Is there a way to enable this on 0.3.5 as well?<br>
<br>
Best regards,<br>
Arun<br>
<br>
On Tue, Oct 9, 2018 at 7:22 AM Thomas De Schampheleire<br>
<<a href="mailto:patrickdepinguin@gmail.com" target="_blank" rel="noreferrer">patrickdepinguin@gmail.com</a>> wrote:<br>
><br>
> Hi,<br>
><br>
> El mar., 9 oct. 2018 a las 16:10, Arun Chandrasekaran<br>
> (<<a href="mailto:aruncxy@gmail.com" target="_blank" rel="noreferrer">aruncxy@gmail.com</a>>) escribió:<br>
> ><br>
> > Hello,<br>
> ><br>
> > I'm not sure if this PR has been merged with the default branch, as I<br>
> > couldn't get it working.<br>
> ><br>
> > If it is too complicated to integrate evolve, is it possible to have a<br>
> > feature that allows stripping selected changesets?<br>
> ><br>
> > Users edit their local history and their forks get outdated. At the<br>
> > moment the only way to synchronize their forks properly is to delete<br>
> > the fork and refork. This is not scaling well as Kallithea stores a<br>
> > copy of the deleted repos as "rm__reponame".<br>
> ><br>
> > Something like this would be fantastic to have: <a href="https://i.imgur.com/3aBJtjF.png" rel="noreferrer noreferrer" target="_blank">https://i.imgur.com/3aBJtjF.png</a><br>
> ><br>
> > Is stripping the csets a feasible option to implement in Kallithea?<br>
> ><br>
> > I tried doing this change myself, but since I'm not familiar with web<br>
> > development I couldn't get any far.<br>
> ><br>
> > Appreciate the help!<br>
><br>
> In the Kallithea instances that I am administering, I am using the<br>
> following old patch:<br>
><br>
> # HG changeset patch<br>
> # User Sean Farley <<a href="mailto:sean.michael.farley@gmail.com" target="_blank" rel="noreferrer">sean.michael.farley@gmail.com</a>><br>
> # Date 1405350468 -7200<br>
> #      Mon Jul 14 17:07:48 2014 +0200<br>
> # Node ID 62e0e1e58b38ef2d31552a9c0402f8fdfb50c2a3<br>
> # Parent  38d25e749154f715b1220bfd5a95f16e2eaeca91<br>
> settings: add non-publishing setting for use with evolve<br>
><br>
> NOTE (tdescham): to enable this setting, one needs to save the VCS settings at<br>
> least once, even though there is no new configurable option.<br>
><br>
> diff --git a/kallithea/controllers/admin/settings.py<br>
> b/kallithea/controllers/admin/settings.py<br>
> --- a/kallithea/controllers/admin/settings.py<br>
> +++ b/kallithea/controllers/admin/settings.py<br>
> @@ -130,6 +130,9 @@ class SettingsController(BaseController)<br>
>  #                sett = Ui.get_or_create('extensions', 'hggit')<br>
>  #                sett.ui_active = form_result['extensions_hggit']<br>
><br>
> +                sett = Ui.get_or_create('phases', 'publish')<br>
> +                sett.ui_value = 'false'<br>
> +<br>
>                  Session().commit()<br>
><br>
>                  h.flash(_('Updated VCS settings'), category='success')<br>
><br>
><br>
> As noted in the commit msg, you need to save the VCS settings of<br>
> Kallithea at least once to make this have effect, but after that, the<br>
> Kallithea repos will have phases.publish set to False.<br>
><br>
> Best regards,<br>
> Thomas<br>
</blockquote></div>