12

我在一个 Mercurial 存储库上工作,该存储库被检出到 Unix 文件系统上,例如某些机器上的 ext3 和其他机器上的 FAT32。

在 Subversion 中,我可以设置 svn:executable 属性来控制在支持此类位的平台上签出文件时是否应将文件标记为可执行。无论我在哪个平台上运行 SVN 或包含我的工作副本的文件系统如何,我都可以做到这一点。

在 Mercurial 中,如果克隆位于 Unix 文件系统上,我可以 chmod +x 获得相同的效果。但是如何在 FAT 文件系统上的文件上设置(或删除)可执行位?

4

3 回答 3

9

如果文件系统不支持它,暂时您无法更改执行位(我计划将来支持它)。

于 2010-04-24T08:34:02.513 回答
9

Mercurial 将执行位作为文件元数据的一部分进行跟踪。没有办法在 mercurial 中明确设置它,但它会跟踪chmodunix 上所做的更改。默认情况下,添加到 windows 上的文件将设置执行位,但 windows attrib 命令不允许您设置它们。

如果您这样做,hg log -p --git您将看到显示执行位更改的补丁格式,如下所示:

$ hg log --git -p
changeset:   1:0d9a70aadc0a
tag:         tip
user:        Ry4an Brase <ry4an-hg@ry4an.org>
date:        Sat Apr 24 10:05:23 2010 -0500
summary:     added execute

diff --git a/that b/that
old mode 100644
new mode 100755

changeset:   0:06e25cb66089
user:        Ry4an Brase <ry4an-hg@ry4an.org>
date:        Sat Apr 24 10:05:09 2010 -0500
summary:     added no execute

diff --git a/that b/that
new file mode 100644
--- /dev/null
+++ b/that
@@ -0,0 +1,1 @@
+this

如果您无法进入 unix 系统来设置它们,您可能会伪造一个类似的补丁hg import,但这绝对是次优的。

于 2010-04-24T15:06:38.147 回答
5

对于 Windows,您需要创建一个补丁文件然后应用它,就像Ry4an 所说的那样,但--bypass参数为hg import. 这可以通过创建一个 Powershell 脚本文件来完成,该文件SetFileExecutable.ps1中包含以下文本

param (
  [String]$comment = "+execbit",
  [Parameter(Mandatory=$true)][string]$filePathRelativeTo,
  [Parameter(Mandatory=$true)][string]$repositoryRoot
)

if( Test-Path -Path "$($repositoryRoot)\.hg" -PathType Container )
{
  if( Test-Path -Path "$($repositoryRoot)\$($filePathRelativeTo)" -PathType Leaf )
  {
    $filePathRelativeTo = $filePathRelativeTo.Replace( '\', '/' )

    $diff = "$comment" + [System.Environment]::NewLine +
      [System.Environment]::NewLine +
      "diff --git a/$filePathRelativeTo b/$filePathRelativeTo" + [System.Environment]::NewLine +
      "old mode 100644" + [System.Environment]::NewLine +
      "new mode 100755"

    Push-Location
    cd $repositoryRoot
    $diff | Out-File -Encoding 'utf8' $env:tmp\exebit.diff
    hg import --bypass -m "$comment" $env:tmp\exebit.diff
    Pop-Location
  }
  else
  {
    Write-Host "filePathRelativeTo must the location of a file relative to repositoryRoot"
  }
}
else
{
  Write-Host "repositoryRoot must be the location of the .hg folder"
}

执行如下:

.\SetFileExecutable.ps1" -comment "Marking file as executable" -filePathRelativeTo mvnw -repositoryRoot "c:\myrepo"

在 Mercurial 的 Bugzilla 中使用 Matt Harbison提供的解决方案

于 2016-07-18T14:35:20.240 回答