Custom variables for Mercurial possible?Mercurial stuck “waiting for lock”What is the Difference Between Mercurial and Git?Mercurial for Beginners: The Definitive Practical GuideGit and Mercurial - Compare and ContrastHow to save username and password with Mercurial?Mercurial and code reviews; good workflow?Is it possible to reopen a closed branch in Mercurial?Mercurial autosync userHow to convert Mercurial diff output to HTML?Convert Mercurial project to Git

In Bb5 systems against the Sicilian, why does White exchange their b5 bishop without playing a6?

Who are the people reviewing far more papers than they're submitting for review?

Slow query when having 'contains' and '=' together in where clause

Should I inform my future product owner that there are big chances that a team member will leave the company soon?

What is Cousin Itt in The Addams Family?

Do household ovens ventilate heat to the outdoors?

How do we know that black holes are spinning?

Is there an in-universe reason Harry says this or is this simply a Rowling mistake?

How important is weather sealing for a winter trip?

Delete empty subfolders, keep parent folder

Statistical tests for benchmark comparison

Are all article combinations valid patterns for "the" ɴᴏᴜɴ of "the" ɴᴏᴜɴ?

Is a global DNS record a security risk for phpMyAdmin?

How can I create folders in folders in terminal

Python web-scraper to download table of transistor counts from Wikipedia

Is it possible that the shadow of The Moon is a single dot during solar eclipse?

What is the source of "You can achieve a lot with hate, but even more with love" (Shakespeare?)

What exactly is a web font, and what does converting to one involve?

Did slaves have slaves?

All numbers in a 5x5 Minesweeper grid

Hobby function generators

How do rulers get rich from war?

Why do things cool off?

Is Zack Morris's 'time stop' ability in "Saved By the Bell" a supernatural ability?



Custom variables for Mercurial possible?


Mercurial stuck “waiting for lock”What is the Difference Between Mercurial and Git?Mercurial for Beginners: The Definitive Practical GuideGit and Mercurial - Compare and ContrastHow to save username and password with Mercurial?Mercurial and code reviews; good workflow?Is it possible to reopen a closed branch in Mercurial?Mercurial autosync userHow to convert Mercurial diff output to HTML?Convert Mercurial project to Git






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








3















When I commit my changes I add a technical description to it. But for a changelog I need the information if the change is relevant for our customer. This information should be required to add as a developer.



I saw that can get a different log via



hg log --template 'author: authorn'


But as variables I can only use build in variables like author.



I want to use own variables that are also visible in html-view.



Is that possible?










share|improve this question


























  • If you store customer-id with changeset (you have to do it), you can filter changeset based on this data. HOW do you save customer-label now?

    – Lazy Badger
    Mar 28 at 19:40







  • 2





    I see two possible solutions, you either store it in the changeset description in a machine-parseable format but it will be visible everywhere the description is visible. Or you can store it in the changeset extra, I don't think there is a in-core command or option to do it but you can do it with an extension and extract it later to generate the changelog.

    – Boris Feld
    Mar 29 at 9:28

















3















When I commit my changes I add a technical description to it. But for a changelog I need the information if the change is relevant for our customer. This information should be required to add as a developer.



I saw that can get a different log via



hg log --template 'author: authorn'


But as variables I can only use build in variables like author.



I want to use own variables that are also visible in html-view.



Is that possible?










share|improve this question


























  • If you store customer-id with changeset (you have to do it), you can filter changeset based on this data. HOW do you save customer-label now?

    – Lazy Badger
    Mar 28 at 19:40







  • 2





    I see two possible solutions, you either store it in the changeset description in a machine-parseable format but it will be visible everywhere the description is visible. Or you can store it in the changeset extra, I don't think there is a in-core command or option to do it but you can do it with an extension and extract it later to generate the changelog.

    – Boris Feld
    Mar 29 at 9:28













3












3








3








When I commit my changes I add a technical description to it. But for a changelog I need the information if the change is relevant for our customer. This information should be required to add as a developer.



I saw that can get a different log via



hg log --template 'author: authorn'


But as variables I can only use build in variables like author.



I want to use own variables that are also visible in html-view.



Is that possible?










share|improve this question
















When I commit my changes I add a technical description to it. But for a changelog I need the information if the change is relevant for our customer. This information should be required to add as a developer.



I saw that can get a different log via



hg log --template 'author: authorn'


But as variables I can only use build in variables like author.



I want to use own variables that are also visible in html-view.



Is that possible?







mercurial






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 28 at 13:44









DaveInCaz

4,3603 gold badges22 silver badges45 bronze badges




4,3603 gold badges22 silver badges45 bronze badges










asked Mar 28 at 13:24









N. KochN. Koch

254 bronze badges




254 bronze badges















  • If you store customer-id with changeset (you have to do it), you can filter changeset based on this data. HOW do you save customer-label now?

    – Lazy Badger
    Mar 28 at 19:40







  • 2





    I see two possible solutions, you either store it in the changeset description in a machine-parseable format but it will be visible everywhere the description is visible. Or you can store it in the changeset extra, I don't think there is a in-core command or option to do it but you can do it with an extension and extract it later to generate the changelog.

    – Boris Feld
    Mar 29 at 9:28

















  • If you store customer-id with changeset (you have to do it), you can filter changeset based on this data. HOW do you save customer-label now?

    – Lazy Badger
    Mar 28 at 19:40







  • 2





    I see two possible solutions, you either store it in the changeset description in a machine-parseable format but it will be visible everywhere the description is visible. Or you can store it in the changeset extra, I don't think there is a in-core command or option to do it but you can do it with an extension and extract it later to generate the changelog.

    – Boris Feld
    Mar 29 at 9:28
















If you store customer-id with changeset (you have to do it), you can filter changeset based on this data. HOW do you save customer-label now?

– Lazy Badger
Mar 28 at 19:40






If you store customer-id with changeset (you have to do it), you can filter changeset based on this data. HOW do you save customer-label now?

– Lazy Badger
Mar 28 at 19:40





2




2





I see two possible solutions, you either store it in the changeset description in a machine-parseable format but it will be visible everywhere the description is visible. Or you can store it in the changeset extra, I don't think there is a in-core command or option to do it but you can do it with an extension and extract it later to generate the changelog.

– Boris Feld
Mar 29 at 9:28





I see two possible solutions, you either store it in the changeset description in a machine-parseable format but it will be visible everywhere the description is visible. Or you can store it in the changeset extra, I don't think there is a in-core command or option to do it but you can do it with an extension and extract it later to generate the changelog.

– Boris Feld
Mar 29 at 9:28












0






active

oldest

votes










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);














draft saved

draft discarded
















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55398759%2fcustom-variables-for-mercurial-possible%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes




Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.




















draft saved

draft discarded















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55398759%2fcustom-variables-for-mercurial-possible%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해