I'm not the best in terms of programming and using Git, since I do not use it that often, and I have an issue that I wouldn't expect to ever have:
- I'm forking to a Git repository
- I'm cloning forked repository
- Applying changes to code
- Pushing changes to Git
- Creating pull request
Now, the issue is that the Python code from cloned repository has a newline at the end of the code (as the Python god intended to, I don't know).
Now although I do not remove that newline at the end, when I push the code and create a pull request that newline is being removed ALTHOUGH in pycharm I can see there is a newline at the end of the code O_o
What is wrong? Is it some kind of setup of git? Or rather PyCharm?
I also got this warning after 'git add':
and I thought 'git config core.autocrlf false' would fix the issue, but maybe it was not a correct command.

