On 30 November 2012 17:07, Vladimír Gorej <go...@codescale.net> wrote: > I did not find any problems with the repo, except already known problem with > the duplicate tags. I reviewed some of the history commits with 'git gui' > tool and everything seemed fine.
Yeah, i did the same using tortoise-git, and all seems well. > Maybe we should have a look at this: > https://help.github.com/articles/dealing-with-line-endings#platform-all, if > commiters/contributors develop on various platforms. Well, the plan was to start using PSR-2 coding standard, and it says that all files should use unix-style line breaks (LF) regardless of the platform. So the simplest solution is to put the following line in .gitattributes: * text eol=lf That way all line breaks will be converted to LF. Regards, Ivan