sourcetree line ending issue

感情迁移 提交于 2021-02-07 18:19:11

问题


I am getting a very strange whitespace issue.

I am working with a local copy of a WordPress site with the .git repo in the wp-content/themes folder so all changes to any theme are tracked etc.

When I set up the repo it considered every file (apart from those in gitignore) as new files and I committed those as the 'initial commit'.

Firstly is that normal? To have to commit all the files when setting up a new repo? 2nd - and this is the strange behaviour.

when I go to stage these files I get some whitespace inserted after the first character on many of the files.

enter image description here

I am thinkng this si something to do with line endings. I have my global config set to autocrlf = true also I have tried

 autocrlf = true
 eol = native

In my local git config. .gitattributes is set to :

* text=auto

as advised by Force LF eol in git repo and working copy

Nothing is helping so far. I am working on a windows machine, but the files were tarred from a linux server and just untarred into the directory.


回答1:


Goto terminal and enter:

git config --global core.autocrlf false

Then try to stage again.

I susepct it is the same issue as this one

Caused by git attempts to automatically converts your line ending style to CRLF when you checkout a file and back to LF before sending it.

You can safely disable it and take care of line ending problems yourself or convert line ending style for the file in question by yourself but latter only hide the problem.

Also, you will always have to have an initial commit for each new repo, since new repo (not cloned but created with git init, for example) does not contain any file, therefore you will have to specify which files you would like to track by making an initial commit.

For the space after first character issue, try to fix them manually and see if the problem reappears.



来源:https://stackoverflow.com/questions/25724969/sourcetree-line-ending-issue

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!