Import ZIP
Less than 1 minuteoffline projects
Download ZIP File
An offline project is based on a ZIP file that contains all files of a git repository.
First, download the latest version of the project you want to import.
- For GitHub :
- Go to the project main page (e.g. https://github.com/larshp/abapOpenChecks)
- Select Code > Download ZIP
- Save file
Import ZIP File
- Connect to SAP in language English (EN)
- Run abapGit:
- If you have installed the standalone version: in transaction
SE38
, run the program you created (ZABAPGIT_STANDALONE
orZABAPGIT_FULL
or other) - If you have installed the developer version: run transaction
ZABAPGIT
- If you have installed the standalone version: in transaction
- Select New Offline
- Enter the project name and select an existing package or create a new package
- Select Import zip
- Select the ZIP file (eg. abapGit-master.zip)
- Select Pull zip
Hints
abapGit can only import files with LF
as line-terminator.
If you clone a project on windows with git cli to pack into a ZIP file later on, configure git not replace LF
by CRLF
:
git config [--global, --local, --system] core.autocrlf false