-
-
Notifications
You must be signed in to change notification settings - Fork 96
Entwicklung
Alexander edited this page Nov 9, 2016
·
31 revisions
- Oracle JDK 8 / OpenJDK 8 + JavaFX
- git
mkdir mediathekview
cd mediathekview
git clone https://github.com/mediathekview/MediathekView.git
git clone https://github.com/mediathekview/MSearch.git
Git workflow Git Flow cheatsheet
# Installationsanweisungen findest du im Cheatsheet.
git flow init # Alle Einstellungen auf Standard
# Als Name wird immer eine Issue Nummer verwendet, also vorher ein Issue erstellen, wenn nicht schon vorhanden.
git flow feature start '#112' # Beispiel
# entwickeln
git flow feature finish '#112' # Feature fertig stellen
# Als Name wird wieder nur eine Issue Nummer verwendet.
git flow hotfix start '#113' # Beispiel
# hotfix entwickeln
git push origin '#113' # Hochladen und Pull Request erstellen.
cd MediathekView
./gradlew run
- Verzeichnisse
MSearch
undMediathekView
mit Netbeans öffnen
- Falls noch nicht vorhanden: Plugin buildship installieren
- Projekt
MediathekView
als Gradle-Projekt importieren.MSearch
wird automatisch mit importiert.