tortoisehg

Why are my dlls not included in my exported patches?

南楼画角 提交于 2019-12-01 16:33:09
I have used TortoiseHg to export a few changesets from a Mercurial repository. This went fine, except that the SignalR dlls were not included in the patch of the changeset where I added those dlls. Why are they not being included? If I look at the changeset on my machine, I can see the dlls are added in the changeset. How can I add these dlls to the patch!? I installed SignalR through nuget. Thanks in advance. EDIT: I also noticed that another change to a file is also not included in the patch of that changeset. EDIT: When I open the patch in notepad++, I saw mention of the files: diff -r

Mercurial Missing Revlog

早过忘川 提交于 2019-12-01 15:34:37
I'm receiving a "missing revlog" error when using Mercurial (via TortoiseHg). Does anybody know how to fix this repo? % hg --repository C:\Source\Project verify --verbose repository uses revlog format 1 checking changesets checking manifests crosschecking files in changesets and manifests checking files data/MyProject.Class.Library.Tests/Part/FileName.cs.orig.i@1: missing revlog! 1: empty or missing MyProject.Class.Library.Tests/Part/FileName.cs.orig MyProject.Class.Library.Tests/Part/FileName.cs.orig@1: fb25dd9d5f41 in manifests not found 4384 files, 1354 changesets, 12803 total revisions 3

Why are my dlls not included in my exported patches?

泪湿孤枕 提交于 2019-12-01 15:27:51
问题 I have used TortoiseHg to export a few changesets from a Mercurial repository. This went fine, except that the SignalR dlls were not included in the patch of the changeset where I added those dlls. Why are they not being included? If I look at the changeset on my machine, I can see the dlls are added in the changeset. How can I add these dlls to the patch!? I installed SignalR through nuget. Thanks in advance. EDIT: I also noticed that another change to a file is also not included in the

Mercurial Missing Revlog

走远了吗. 提交于 2019-12-01 14:30:21
问题 I'm receiving a "missing revlog" error when using Mercurial (via TortoiseHg). Does anybody know how to fix this repo? % hg --repository C:\Source\Project verify --verbose repository uses revlog format 1 checking changesets checking manifests crosschecking files in changesets and manifests checking files data/MyProject.Class.Library.Tests/Part/FileName.cs.orig.i@1: missing revlog! 1: empty or missing MyProject.Class.Library.Tests/Part/FileName.cs.orig MyProject.Class.Library.Tests/Part

Using Mercurial patch queue repository on BitBucket for many users and patches

我们两清 提交于 2019-12-01 08:33:50
Sorry for the many-part question, but I am having a difficult time understanding the intended methods to use a Mercurial Patch Queue with BitBucket, and Google isn't helping much. My hope is that one answer describing some MQ concepts will cover many of the questions at once. I have read http://ches.nausicaamedia.com/articles/technogeekery/using-mercurial-queues-and-bitbucket-org , but it seems to be out of date and incomplete. My overall plan is to allow a multitude of submitted changes from a multitude of users without necessarily committing them to a branch. These patches represent optional

Using Mercurial patch queue repository on BitBucket for many users and patches

只愿长相守 提交于 2019-12-01 06:08:21
问题 Sorry for the many-part question, but I am having a difficult time understanding the intended methods to use a Mercurial Patch Queue with BitBucket, and Google isn't helping much. My hope is that one answer describing some MQ concepts will cover many of the questions at once. I have read http://ches.nausicaamedia.com/articles/technogeekery/using-mercurial-queues-and-bitbucket-org, but it seems to be out of date and incomplete. My overall plan is to allow a multitude of submitted changes from

Renaming in Git and Mercurial: Accuracy and automaticity

放肆的年华 提交于 2019-12-01 02:37:32
问题 I only have a few days of experience with Git and Mercurial, and I don't have much programming experiences. In the past few days, I read many posts that comparing the two. Based on what I've read and my tests, I get the following conclusions: Git's renaming is 100% automatic but not 100% accurate. It relies on algorithm to guess renames. The end users are not able to alter its decision even if it's completely wrong. I guess Git's method might be fine for 99% of the cases, but that 1% are

Is there an hg equivalent of `git stash save -p` that can split chunks into smaller chunks?

最后都变了- 提交于 2019-11-30 22:25:16
I want to commit only some of the modifications I made to my files and my preferred way to do this is to shelve/stash away the changes I don't want to commit. This allows me to test the changes I will commit before actually commiting them. The problem I am having is that when I use the "shelve" tool in tortoisehg I can't find any way to split a chunk into two smaller chunks. For example, I have a chunk that looks like this: @@ -1,1 +1,2 @@ -hallo world +hello world +something else I would like to shelve away the "something else" so I can commit just the "hallo->hello" fix. However, since

When trying to connect through a proxy server TortoiseHg for Windows says “SSL error: unknown protocol”

社会主义新天地 提交于 2019-11-30 18:49:00
The scenario: You're behind a proxy server on Windows. You've configured TortoiseHg to use a proxy server; that is you've entered a server name/IP and port number. You are able to connect to the internet using Internet Explorer. But when you try to pull or push and it produces the error message "SSL error: unknown protocol". (I plan to answer this myself.) The cause is that Internet Explorer is using an automatic proxy configuration script and TortoiseHg is using a particular proxy server. IE is not using the same proxy server because the automatic script picked a different proxy server. The

Is there an hg equivalent of `git stash save -p` that can split chunks into smaller chunks?

孤人 提交于 2019-11-30 18:18:23
问题 I want to commit only some of the modifications I made to my files and my preferred way to do this is to shelve/stash away the changes I don't want to commit. This allows me to test the changes I will commit before actually commiting them. The problem I am having is that when I use the "shelve" tool in tortoisehg I can't find any way to split a chunk into two smaller chunks. For example, I have a chunk that looks like this: @@ -1,1 +1,2 @@ -hallo world +hello world +something else I would