Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions src/user-guide/getting-started/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ order: 10

abapGit exists in 2 flavours: _standalone_ version or _developer_ version.

* The standalone version is targeted at users. It consist of one (huge) program which contains all the needed code. You run the standalone version in transaction `SE38`, executing the program you created.
* The standalone version is targeted at users. It consists of one (huge) program which contains all the needed code. You run the standalone version in transaction `SE38`, executing the program you created.
* The developer version is targeted at developers contributing to the abapGit codebase. It consists of all the ABAP programs/classes/interfaces/etc. of the abapGit project. You run the developer version with transaction `ZABAPGIT`. Only the developer version supports parallel processing, so it might be of interest to you even if you do not intend to contribute.

## Prerequisites

abapGit requires SAP BASIS version 702 or higher.

abapGit works best with SAP GUI for Windows. Check [SAP GUI](/user-guide/setup/sapgui.html) for details about the SAP GUI Browser Control and other SAP GUI version (for Java or for HTML).
abapGit works best with SAP GUI for Windows. Check [SAP GUI](/user-guide/setup/sapgui.html) for details about the SAP GUI Browser Control and other SAP GUI versions (for Java or for HTML).

You can check your system for recommended SAP Notes using [Note Analyzer](/reference/note-analyzer.html).
You can check your system for recommended SAP Notes using [Note Analyzer](/user-guide/reference/note-analyzer.html).

## Install Standalone Version

Expand All @@ -32,30 +32,30 @@ Now you can use abapGit by executing the report in transaction `SE38`.

## Install Developer Version

In order to contribute to the abapGit project, you install the developer version. First, logon to your SAP system in English (language **EN**) and install the standalone version (see above).
In order to contribute to the abapGit project, you install the developer version. First, log on to your SAP system in English (language **EN**) and install the standalone version (see above).

### Online (Recommended)

Prerequisite to using the online feature is that [SSL must be setup](/user-guide/setup/ssl-setup.md). If your system is not connected to the Internet (e.g. behind a firewall) or doesn't allow proper SSL configuration, then you can use the offline scenario (see below).
The prerequisite to using the online feature is that [SSL must be set up](/user-guide/setup/ssl-setup.md). If your system is not connected to the Internet (e.g. behind a firewall) or doesn't allow proper SSL configuration, then you can use the offline scenario (see below).

1. Run the standalone version of abapGit
1. On the repository list page, select "New Online"
1. Enter `https://github.com/abapGit/abapGit/` for the URL
1. Enter package name `$ABAPGIT` (or select an existing or create new package)
1. Enter package name `$ABAPGIT` (or select an existing or create a new package)
1. Select "Clone Online Repo"
1. Select "Pull"

Transaction `ZABAPGIT` is now available to run the developer version.

### Offline

Download latest version of the abapGit developer version from <https://github.com/abapGit/abapGit/>. Select **Code** > **Download ZIP** and save the file locally.
Download the latest version of the abapGit developer version from <https://github.com/abapGit/abapGit/>. Select **Code** > **Download ZIP** and save the file locally.

![](/img/zip_download.png)

1. Run the standalone version of abapGit
1. On the repository list page, select "New Offline"
1. Enter repo name `abapGit` and package name `$ABAPGIT` (or select an existing or create new package)
1. Enter repo name `abapGit` and package name `$ABAPGIT` (or select an existing or create a new package)
1. Select "Create Offline Repo"
1. Select "Import <sup>zip</sup>"
1. Select the _abapGit-main.zip_ file
Expand Down