-
Notifications
You must be signed in to change notification settings - Fork 225
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Git source control: added an optional 'revision' configuration property #163
Conversation
…build of modifications up to a certain tag name (or commit hash)
Hi, is it really needed to add a second property that is nearly the same as the |
added option to unload dashboard : System.Web.HttpRuntime.UnloadAppDomain()
Hi @JoseMarcenaro @dnauck @RubenWillems @mintsoft I've been looking for the past 2 days at how CC.NET and Jenkins implemented Git as source control and Git support in CC.NET is pretty rudimentary (10yrs ago SVN was ruling the Earth 😄 ). Best, |
Yes, that would be a better implementation. I agree. Regards, |
Could you rebase onto latest master? |
Hi
I'm not that familiar with GIT
but I know a Rebase has the option to destroy the repo.
what would the correct syntax be?
And what would you like for the outcome?
what will the rebase solve?
grts
Ruben
…On Sat, 24 Aug 2019 at 18:25, linquize ***@***.***> wrote:
Could you rebase onto latest master?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#163?email_source=notifications&email_token=AAEUZAKH7Y2RXJ4PGGG55ZLQGFOH7A5CNFSM4ABP6WDKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5CDIAY#issuecomment-524563459>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAEUZAJPXZZY4A5PITXMR6DQGFOH7ANCNFSM4ABP6WDA>
.
|
@RubenWillems I think what @linquize meant is that if @JoseMarcenaro rebases his fork from master, the conflicts will go away as @JoseMarcenaro will have to solve them when he rebases. Then we should be able to single-click-merge the PR on github as it'll be unconflicted |
Hi
thanks for the update.
That makes indeed a lot more sense.
with kind regards
Ruben Willems
…On Mon, 26 Aug 2019 at 14:06, Rob Emery ***@***.***> wrote:
@RubenWillems <https://github.com/RubenWillems> I think what @linquize
<https://github.com/linquize> meant is that if @JoseMarcenaro
<https://github.com/JoseMarcenaro> rebases his fork from master, the
conflicts will go away as @JoseMarcenaro
<https://github.com/JoseMarcenaro> will have to solve them when he
rebases. Then we should be able to single-click-merge the PR on github
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#163?email_source=notifications&email_token=AAEUZAMENA4BPA5KHWNJ563QGPBLRA5CNFSM4ABP6WDKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5EFKJA#issuecomment-524834084>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAEUZANENWW5BJI6T3V7L23QGPBLRANCNFSM4ABP6WDA>
.
|
Hi guys I did a quick check of what the rebase would require, but there are many (27) conflics in the core Git.cs class. If this PR code can inspire you to implement a similar feature on top of the current code, go ahead. |
It's probably best to close this PR then @JoseMarcenaro we've got it for reference anyway :) |
In cases where the CCNET tool is used to manually launch a test or release build, and Git source control is used, it would be helpful to specify - with a dynamic parameter - a specific revision (tag name, or even commit hash) to checkout and build.
This proposed patch is an update of the existing Git.cs class (and its unit test) implementing this feature as an added 'revision' configuration element (optional, default empty)
This feature addresses the same need described by Scott Vercuski 2 months ago in this entry