vote up 2 vote down star
1

After migrating to Windows, I'm using msysgit with its included bash shell, and that's working well for me. But I have issues: our ant build process won't run in that shell, I'd like to use Cygwin's xterms instead of the Windows command window, since the terminal compatibility isn't good enough to run everything else I'd like in that window, and so on.

I've actually made a go of sticking with msysgit in the Windows command shell so that I don't have to use a separate window to build, but that's got even more problems: the lack of cd - and file completion is killing me, most of the commands I'd like to pipe to aren't present, etc.

So if I switch to using Cygwin's git, or worse, use both at different times, are line-endings going to bite me? Will Cygwin's git expect everything to be \n and think it's seeing changes because mSysGit converted to \r\n when checking out? Will Cygwin's git check out as \n and confuse my Windows Eclipse, which I'm sure wants everything to be \r\n?

flag

64% accept rate
Question from an interested party: have you tried using MSYS git from Cygwin? If so, is it working? Thanks. – Joce May 3 at 4:37
msysgit is not from Cygwin. I've found I can use Cygwin's git and msysgit interchangeably, provided I'm careful with settings like core.autocrlf – skiphoppy May 3 at 23:53

4 Answers

vote up 5 vote down

The simplest approach would be to set any git (msysGit or Cygwin git) to ignore crlf styles.

core.autocrlf=false

That way, you do not have ant unwanted conflict.

link|flag
That pointed me in the right direction, except I think what I have to do is set it to true from Cygwin. I have to keep the CRLF-style terminators for compatibility with other windows apps, I think. – skiphoppy Mar 27 at 17:48
What other windows app ? As Peter Boughton says in his answer, "Most modern applications (including Eclipse) are perfectly capable of using \n only." – VonC Mar 27 at 17:53
I've actually had line-ending issues with using different versions of msysGit. Explicitly setting autocrlf fixed it. – T.E.D. Mar 27 at 17:57
@ted: interesting. I always try to maintains all my msysGit at the same version, and did not experienced that. – VonC Mar 27 at 17:59
Notepad still can't handle \n line endings, but everything else I'd ever want to use certainly does. – George V. Reilly Mar 29 at 2:16
vote up 2 vote down

Will Cygwin's git check out as \n and confuse my Windows Eclipse, which I'm sure wants everything to be \r\n?

Most modern applications (including Eclipse) are perfectly capable of using \n only.

There are a few annoying exceptions (e.g. email protocol), but in most cases you can stick to just using \n for everything.

So, as VonC says, just disable the autocrlf setting and it'll be fine.

link|flag
Unless skiphoppy has a very particular context calling for \r\n usage, I agree with you. +1 – VonC Mar 27 at 17:58
vote up 1 vote down

Actually, just sticking with msysGit won't save you. I had one issue where every single source file showed as changed because of the line-ending issue when using different versions of msysGit. Setting core.autocrlf in the git config file fixed it.

link|flag
vote up 1 vote down

From this post - "Setup GIT Server with Msysgit on Windows" - a user suggested this link - http://www.timdavis.com.au/git/setting-up-a-msysgit-server-with-copssh-on-windows/

I used this setup and works flawlessly on Windows for Me.

Hope it helps

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.