kiln

How to manage branches with Kiln using Git?

☆樱花仙子☆ 提交于 2021-02-19 03:48:04
问题 My company is using Kiln so developers can use their preferred tool between Git and Mercurial. I’m a Git user and never used Mercurial. There are some incomprehensions in the use of branches with Kiln. When I create a new branch using the Kiln interface, it, in reality, creates a new repository, not a branch. Even if Kiln displays it as a "branch" and not a "repository". And when I clone the repository in Git, git branch -a does not show me the remote branch I just created. I need to clone

“factorizing” a mercurial repository on kiln

允我心安 提交于 2020-01-05 03:57:16
问题 Summarized questions: What is the simplest (and best) way to shift a group of files from an existing repository to a new sub repository, so those files can be integrated with other parent repositories, some of which may not yet exist? Do files in subrepositories need to be in discrete folders, or can they exist alongside other files? Detailed Questions: I have begun the process of creating multiple repositories representing several projects that have shared components, and that is going well,

Automated sync between Github and Kiln

自古美人都是妖i 提交于 2020-01-01 04:46:06
问题 I am a frontend designer and don't have a large programming background. I do CSS/html and a bit of JavaScript. The tech team at our company has moved our version control from Git (github) to Mercurial (Kiln). The only reason for them is to get the code review feature of Kiln (we use Fogbugz and love it). The problem is that the frontenders and non-developers working in our version control are funcking up all the time. We use hg-git to deploy on Heroku and are used to git (never worked with

Why Kiln is based on Mercurial, and not other (D)VCS

守給你的承諾、 提交于 2019-12-28 05:30:47
问题 What were the reason for chosing Mercurial as a basis of FogCreek Kiln, a source control management system with tightly integrated code review, and FogBugz integration? Why Mercurial, and not other (distributed) version control system, like Bazaar, Git or Monotone, or creating own version control system like Fossil (distributed software configuration management, including bug tracking and wiki) did? What were features that make FogCreek choose Mercurial as Kiln engine? 回答1: Here's an answer

Embedding a github repository inside a mercurial (kiln) repository - how integrated is it?

旧时模样 提交于 2019-12-24 09:26:40
问题 Summarised Question: Are github-hosted sub repositories within a mercurial/kiln repository possible, and if so are they automatically updated/cloned when the parent mercurial repository is operated on by a hg clone or hg commit command? Detailed Question: Following on from my question that was answered so excellently here , some of my third party code is in folders I downloaded a while ago from opensource efforts on github. Since at that stage I was not using version control, those folders

Fix bad merge in mercurial

烈酒焚心 提交于 2019-12-23 17:18:47
问题 In our mercurial project configuration we have 3 branches in a single repository. One is a stable release branch where urgent bug fixes are done, one is a feature branch which contains new feature code and one is a UAT branch where both bug fixes and new features are merged into to provide the most up-to-date code base. We have merged a whole load of new feature code into the UAT branch without any issues at all. Following that we merged the stable branch with the bug fixes into the UAT

How to remove largefiles from Mercurial repo

谁说胖子不能爱 提交于 2019-12-22 04:53:06
问题 See also this question. Without knowing what I was doing, I enabled the largefiles extension, committed a file and pushed it to kiln. Now I know the error of my ways, and I need to permanently revert this change. I followed the guidance from SO on the subject; and I can remove largefiles locally, but this doesn't affect the remote repos in kiln. I have tried opening the repo in KilnRepositories on the Kiln server and nuking the largefiles folder (as well as deleting 'largefiles' from the

Is Kiln for your server being retired? [closed]

萝らか妹 提交于 2019-12-20 11:55:13
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . I was looking into the Kiln Harmony feature and saw that FogCreek only advertises it in On Demand. In the "How do you get it" section they don't even mention that it is not available for the On Premise version. So I went looking for details of the "Kiln on your Server" pricing to see what was included. I can't

idiots checklist for mercurial with visual studio 2010

牧云@^-^@ 提交于 2019-12-20 08:50:42
问题 So Im a source control idiot so please humor me with this checklist. I finally decided to use Mercurial + TortoiseHg + (VS2010 + HgSccPackage) + Kiln for my next project. I read http://hginit.com/ and I played around quite a bit, but I don't know much about source control so I don't want to make a mistake here, my current project is my biggest and most valuable one yet. So here is my checklist: Creation : I create a new repo in kiln online. Then clone it on my pc. I copy my entire project

setting up mercurial/kiln subrepos on osx

好久不见. 提交于 2019-12-20 05:53:15
问题 I have been trying to follow the instructions in the answer to this question, using kiln. i'd like to be able to arrange things as follows: /somepath/thirdparty maps to a kiln repository "thirdparty" and contains assorted code /somepath/common maps to a kiln repository "common" and contains shared code i have written and /somepath/project1 maps to kiln repository "project1" /somepath/project1/thirdparty maps to branch of thirdparty above /somepath/project1/common maps to branch of common