Re: [Pharo-users] Can GitHubcello be used against BitBucket?

2016-07-25 Thread Thierry Goubier
Hi Sean, I think I got something working (at least it seems to be working... I'm tracking a bug, but I can't reproduce it now. In Pharo5). Try the following in Pharo 5. Add a remote git repository as usual from Monticello, but, instead of the MCFileTreeGitRemoteRepository location:

Re: [Pharo-users] Can GitHubcello be used against BitBucket?

2016-07-25 Thread Thierry Goubier
Hi Sean, I have a solution for you, with just a specific setup of git. It a bit 'by hand', but it should work (at least it worked for me on a private github repository). I'll give you first a reasonable approach (limit the effect to a single repository) and then a global approach (affect all

Re: [Pharo-users] Can GitHubcello be used against BitBucket?

2016-07-25 Thread Yuriy Tymchuk
As far as I can tell, the discussion is not about GitHubcello. If you need a help with GitHubcello please CC me, because I cannot follow everything. Uko > On 25 Jul 2016, at 17:50, Ben Coman wrote: > > Just a couple of articles to head off problems in case you first

Re: [Pharo-users] Can GitHubcello be used against BitBucket?

2016-07-25 Thread Ben Coman
Just a couple of articles to head off problems in case you first tried SSH and then switched to HTTPS. https://confluence.atlassian.com/bitbucket/change-the-remote-url-to-your-repository-794212774.html https://help.github.com/articles/changing-a-remote-s-url/ cheers -ben On Mon, Jul 25, 2016

Re: [Pharo-users] Can GitHubcello be used against BitBucket?

2016-07-25 Thread Dale Henrichs
On 7/25/16 7:50 AM, Thierry Goubier wrote: 2016-07-25 16:40 GMT+02:00 Dale Henrichs >: On 7/25/16 6:40 AM, Thierry Goubier wrote: Hi Dale, what I'd like is a way to detect if credentials

Re: [Pharo-users] Can GitHubcello be used against BitBucket?

2016-07-25 Thread Thierry Goubier
2016-07-25 16:40 GMT+02:00 Dale Henrichs : > > > On 7/25/16 6:40 AM, Thierry Goubier wrote: > >> Hi Dale, >> >> what I'd like is a way to detect if credentials are necessary on a https >> repo, and add (or ask for them) at the smalltalk level. >> > Well the user

Re: [Pharo-users] Can GitHubcello be used against BitBucket?

2016-07-25 Thread Dale Henrichs
On 7/25/16 6:40 AM, Thierry Goubier wrote: Hi Dale, what I'd like is a way to detect if credentials are necessary on a https repo, and add (or ask for them) at the smalltalk level. Well the user should know from the get-go that they are using a private repo and if they supply an https:

Re: [Pharo-users] Can GitHubcello be used against BitBucket?

2016-07-25 Thread Thierry Goubier
Hi Sean, what you see here is the Monticello way of expressing repositories, and it was my choice to limit it to ssh access to git; Metacello uses a different syntax and allways work with the web api of each web git provider (github / bitbucket) over https. Thierry 2016-07-25 15:38 GMT+02:00

Re: [Pharo-users] Can GitHubcello be used against BitBucket?

2016-07-25 Thread Sean Glazier
On Mon, Jul 25, 2016 at 9:13 AM, Dale Henrichs < dale.henri...@gemtalksystems.com> wrote: > M Hi, I saw that class but did not know how to apply it. in metacello when i clicked on +Respository the was not a pattern for using it in the git remote repository pattern. Please forgive my ignorance

Re: [Pharo-users] Can GitHubcello be used against BitBucket?

2016-07-25 Thread Dale Henrichs
On 7/24/16 6:42 PM, Sean P. DeNigris wrote: Dale Henrichs-3 wrote Yes, Metacello supports bitbucket:// repos... N.B. IIRC I wasn't able to use it for my private projects because it doesn't work with private repos accessed via SSH Could it be that the issue has to do with https

Re: [Pharo-users] Can GitHubcello be used against BitBucket?

2016-07-25 Thread Thierry Goubier
Hi Sean, I think the issue is simply that GitFileTree does not support https with authentification. You need to switch to ssh with keys. Now, about the various options you add on the git push command line (diff.mnemonicprefix, core.quotepath), could you detail them? The seems to be unnecessary

Re: [Pharo-users] Can GitHubcello be used against BitBucket?

2016-07-25 Thread Sean Glazier
some more information the git command that it runs is git -C "C:\pharo5win\new-qline" This is run in the method MCFileTreeGitRemoteRepository>>runProcessWrapperGitCommand: anArrayOfStrings in: aDirectory. It is stuck on the line: command waitForExit. this wait for exit has no timeout to it and

Re: [Pharo-users] Can GitHubcello be used against BitBucket?

2016-07-24 Thread Sean Glazier
Yes, I created in Bitbucket a repository named New-QLine. I created aBaselinOfNewQLine which just has stubs. I created 2 Packages. New-Qline and New-Qline-Tests each of these have 3 tags underneath and no classes defined since I wanted to ensure I would have no loading issue and so I can verify

Re: [Pharo-users] Can GitHubcello be used against BitBucket?

2016-07-24 Thread Dale Henrichs
I'd be interested in making this work ... could you supply additional details about the problems you are seeing perhaps we can fix the problems? Dale On 7/24/16 6:42 PM, Sean P. DeNigris wrote: Dale Henrichs-3 wrote Yes, Metacello supports bitbucket:// repos... N.B. IIRC I wasn't able to

Re: [Pharo-users] Can GitHubcello be used against BitBucket?

2016-07-24 Thread Sean P. DeNigris
Dale Henrichs-3 wrote > Yes, Metacello supports bitbucket:// repos... N.B. IIRC I wasn't able to use it for my private projects because it doesn't work with private repos accessed via SSH - Cheers, Sean -- View this message in context:

Re: [Pharo-users] Can GitHubcello be used against BitBucket?

2016-07-24 Thread Dale Henrichs
On 7/24/16 9:55 AM, Yuriy Tymchuk wrote: Well, AFAIK bitbucket is supported by Metacello, so if there is API good enough to get the directory tree of a repo it should be possible to create some kind of BitBucketcello Yes, Metacello supports bitbucket:// repos... Dale

Re: [Pharo-users] Can GitHubcello be used against BitBucket?

2016-07-24 Thread Yuriy Tymchuk
Well, AFAIK bitbucket is supported by Metacello, so if there is API good enough to get the directory tree of a repo it should be possible to create some kind of BitBucketcello > On 21 Jul 2016, at 22:10, Sean Glazier wrote: > > Yes bit bucket is the JIRA tools repo

Re: [Pharo-users] Can GitHubcello be used against BitBucket?

2016-07-21 Thread Sean Glazier
Yes bit bucket is the JIRA tools repo manager and you can create git repositories there. I am wondering if I can publish directly to it or have to first publish to GitHub and then import or pull my changes into bitbucket that does have an import feature for GitHub Kind Regards, Sean Glazier

Re: [Pharo-users] Can GitHubcello be used against BitBucket?

2016-07-21 Thread Yuriy Tymchuk
Hi, to my knowledge GitHubcello[1] is my project for loading filetree projects from GitHub via Spotter. Are you asking about it, or there is something else with the same name? Cheers. Uko [1]: https://github.com/Uko/GitHubcello > On 21 Jul 2016, at 21:16, Sean Glazier

[Pharo-users] Can GitHubcello be used against BitBucket?

2016-07-21 Thread Sean Glazier
Hi, The git repository they are setting up is using Bitbucket part of the JIRA toolsets. Or do I need to publish to GitHub and the import? Is there a Monticello tool for publishing directly to the bitbucket git repository? Forgive my ignorance in this. I have looked over dale slideshow on the