Hint line-break (#3683)

This commit is contained in:
germanysources 2020-07-30 07:12:02 +00:00 committed by GitHub
parent fac5597f46
commit 6c04eac591
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,3 +25,10 @@ First, download the latest version of the project you want to import.
6. Select the zip archive file (eg. *abapGit-master.zip*) 6. Select the zip archive file (eg. *abapGit-master.zip*)
7. Select **Pull <sup>zip</sup>** 7. Select **Pull <sup>zip</sup>**
8. Activate 8. Activate
## Hints ##
abapGit can only import files with [`LF`](https://en.wikipedia.org/wiki/Newline) as line-terminator.
If you clone a project on windows with git cli to pack into a zip-archive later on, configure git not replace `LF` by `CRLF`:
```
git config [--global, --local, --system] core.autocrlf false
```