GitPM is a desktop application designed to simplify and automate the management of your local Git projects.
Before building and installation make sure that your System fulfill the requirements:
- OS Windows 7+ or modern Unix System;
- at least 70 MB of free disk space;
- at least 1 GB of RAM;
- have Git installed.
There are three ways to run the Application, depending on your capabilities and goals.
This way is for developers who want to extend source code or build an up-to-date version of program.
You should already have installed:
- JDK (Java Development Kit) 21+ (you can download it from official Oracle website)
- Apache Maven 3.9.9+ (you can doanload it from official Maven website)
Instruction:
- Download source code of Project to your device:
git clone https://github.com/Honsage/GitPM.git
- Build the Project: from root directory of Project (
GitPM/) call:mvn clean package
- Find built JAR: after building it would appear in
target/directory. - Run the Application: run JAR using:
java -jar target/"jar-filename".jar
This method is recommended due to its cross-platform nature.
You should already have installed:
- JRE (Java Runtime Environment) 21+ (or JDK 21+);
Make sure that java command is available from command line. If it is not so then you should set up JAVA_HOME environment variable.
Instruction:
- Download JAR of Project: go to Releases tab and download file with
.jarextension. - Run the Application with:
java -jar "jar-filename".jar
This is the simplest way for users with Windows OS.
Instruction:
- Download installer: go to Releases tab and download file with
.exeextension. - Install the Application: run the installer and follow Installation Master's instructions.
- Run the Application: open application via shortcut on desktop or Win menu.