Skip to content
This repository was archived by the owner on Dec 20, 2022. It is now read-only.
Draft
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ and this project adheres to [Semantic Versioning (SemVer)](http://semver.org/).
First pre-release.


[Unreleased]: https://github.com/aposin/gem/tree/main
[0.4.1]: https://github.com/aposin/gem/releases/tag/v0.4.1
[0.4.0]: https://github.com/aposin/gem/releases/tag/v0.4.0
[0.3.0]: https://github.com/aposin/gem/releases/tag/v0.3.0
[Unreleased]: https://github.com/allianz/gem/tree/main
[0.4.1]: https://github.com/allianz/gem/releases/tag/v0.4.1
[0.4.0]: https://github.com/allianz/gem/releases/tag/v0.4.0
[0.3.0]: https://github.com/allianz/gem/releases/tag/v0.3.0
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Git Environment Manager (GEM)
[![Build](https://github.com/aposin/gem/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/aposin/gem/actions/workflows/build.yml?query=branch%3Amain+event%3Apush)
[![CodeQL](https://github.com/aposin/gem/actions/workflows/codeql-analysis.yml/badge.svg?branch=main)](https://github.com/aposin/gem/actions/workflows/codeql-analysis.yml?query=branch%3Amain+event%3Apush)
[![Build](https://github.com/allianz/gem/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/allianz/gem/actions/workflows/build.yml?query=branch%3Amain+event%3Apush)
[![CodeQL](https://github.com/allianz/gem/actions/workflows/codeql-analysis.yml/badge.svg?branch=main)](https://github.com/allianz/gem/actions/workflows/codeql-analysis.yml?query=branch%3Amain+event%3Apush)
![GitHub top language](https://img.shields.io/github/languages/top/aposin/gem.svg)
[![CLA assistant](https://cla-assistant.io/readme/badge/aposin/gem)](https://cla-assistant.io/aposin/gem)
[![GitHub](https://img.shields.io/github/license/aposin/gem.svg)](https://github.com/aposin/gem/blob/main/LICENSE)
[![GitHub](https://img.shields.io/github/license/aposin/gem.svg)](https://github.com/allianz/gem/blob/main/LICENSE)

GEM (Git Environment Manager) is a git branch manager which:

Expand Down Expand Up @@ -63,4 +63,4 @@ In addition to update the version numbers, the product file should point again t



[gem-config]: https://github.com/aposin/gem-config
[gem-config]: https://github.com/allianz/gem-config
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ public final void refresh() {
@Override
public final ICommand buildCloneCommand() {
final ProcessExecutor executor = newDefaultProcessExecutor()//
.command(// e.g., "git clone [email protected]:aposin/gem.git C:/dev/gem/repos"
.command(// e.g., "git clone [email protected]:allianz/gem.git C:/dev/gem/repos"
gitBinaryString(), "clone", //
getRepository().getUrl(), // <remote>
getRepository().getDestinationLocation().toString()); // <location>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
package org.aposin.gem.ui.lifecycle.event;

import java.util.Objects;

import org.aposin.gem.core.api.workflow.IFeatureBranch;
import org.aposin.gem.ui.lifecycle.Session;

Expand Down
4 changes: 2 additions & 2 deletions docs/user_manual.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -138,11 +138,11 @@ This extension provides integration with TortoiseGit to perform different action
The product delivered on this repository contains:

* All the extensions described in this document.
* Configuration based on the link:https://github.com/aposin/gem-config[gem-config example repository].
* Configuration based on the link:https://github.com/allianz/gem-config[gem-config example repository].

To configure your own product, there are different options:

* Modify the GEM.ini file to point to your own configuration files (see the link:https://github.com/aposin/gem-config[gem-config example repository] as a starting point).
* Modify the GEM.ini file to point to your own configuration files (see the link:https://github.com/allianz/gem-config[gem-config example repository] as a starting point).
This will include the basic GEM plus the extras provided in this repository.
* Create your own product with the desired plug-ins/features.
This will allow to use extensions that are not included in the default product (e.g., customized plug-ins) and have a different hardcoded configuration on the ini file.
Expand Down
2 changes: 1 addition & 1 deletion products/org.aposin.gem.product/org.aposin.gem.ui.product
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<launcherArgs>
<vmArgs>-Xmx75M
-Dswt.autoScale=true
[email protected]:aposin/gem-config.git
[email protected]:allianz/gem-config.git
-Dorg.aposin.gem.gitconfig.branch=main
-Dorg.aposin.gem.gitconfig.file=root.conf
</vmArgs>
Expand Down