0

我正在尝试将项目从 Perforce 迁移到 Git。我正在关注并在克隆步骤中,执行停止并显示一条消息:

导入没有变化!

不签出任何分支,使用“git checkout -q -b master”

可能是什么问题?

C:\Test-Git>git p4 clone //depot/C:\build\mainline@all C:\Test-Git
Importing from //depot/C:/build/mainline@all into C:\Test-Git
Initialized empty Git repository in C:/Test-Git/.git/
No changes to import!
Not checking out any branch, use "git checkout -q -b master <branch>"
4

1 回答 1

3

//depot/C:\build\mainline@all不是有效的 Perforce 软件仓库路径,因此在其下没有要导入的更改是有道理的。尝试为您尝试导入的 Perforce 文件提供软件仓库路径。

如果您不确定,请尝试:

git p4 clone //depot/... C:\Test-Git
于 2018-03-14T15:12:17.357 回答