Re: git-p4, msysgit, and crlf

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Thu, Apr 10, 2008 at 11:53 PM, Jing Xue <jingxue@xxxxxxxxxxxxxxxxx> wrote:
>
>
>  I'm working on a client project, where everything is developed in
>  Windows, and perforce is the official SCM. All the files use crlf line
>  endings.
>
>  I'm trying to use msysgit for my personal SCM, and git-p4 to sync with
>  perforce.
>
>  The problem I'm running into is that after
>
>   git p4 clone /perforce/path@all proj
>
>  all the files in the working directory are converted to lf line endings,
>  which I'd like to avoid.
>
>  I tracked it down to at some point git-p4 executes what essentially
>  amounts to
>
>   p4 -G print /path/to/file#rev
>
>  in order to get the content of a revision. When I try to run that
>  manually from the msysgit bash, the file content returned has all
>  the line endings converted to lf.
>
>  However, if I try to run without "-G", i.e.
>
>   p4 print /path/to/file#rev
>
>  The content returned has all the original crlf endings left intact.
>
>  I know this looks like a p4 issue, but I just wanted to ask other git-p4
> users out there whether you have run into this, and how you dealt with it.

Well, I'm no expert, but I'll try:

I think if you have the core.autocrlf config option set to true, it
should automatically convert line endings to CRLF for you when
checking out files to your working dir, and converting it back to LF
when committing. This way, content is always stored with LF only, and
can be checked out on any platform using whatever is the "local" line
ending by setting this option. This is the default operation in
Perforce also, as far as I know.

This git option needs to be set before you do the clone, though. If I
remember correctly, msysgit sets this as a global option by default
when you install it, but if not (or if you turned it off), you could
probably try:

git init
git config core.autocrlf true
git p4 sync /perforce/path@all

instead of your git p4 clone

You can verify that it is set by:
cd /path/to/git-cloned/p4-repos
git config --list

... and looking for core.autocrlf=true

Best of luck.
-Tor Arvid-
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Linux Kernel Development]     [Gcc Help]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [V4L]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Fedora Users]

  Powered by Linux