Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 git 对特定文件进行一些临时管理。在那个目录结构中有很多我不想要的文件(而且 git 不能很好地处理),但是我需要对这个文件使用它的补丁管理功能。
我想使用 git-p4。是否可以克隆一个文件而不是整个目录结构?
如果只是暂时的,您是否刚刚考虑过独立于 perforce 来做 git?
只需git init .在包含文件的目录中执行,将文件添加到 git,为其他所有内容创建一个 .gitignore,p4 编辑文件以使其可写,然后对该文件使用 git,直到您准备好将文件提交回 perforce .
git init .
这假设您不想要/不需要git p4为您提供的复杂历史记录和同步管理。
git p4