1
edit
Changes
→How do I resolve the windows line ending error when trying to build FireFox?
git checkout .
</pre>
'''Answer 3''': Before cloning the repository, set the core.autocrlf to false by using the following line.
<pre>
git config --global core.autocrlf false
</pre>
Afterwards, you can freely clone the repository and the build should now work.
==Discussion==