-
Notifications
You must be signed in to change notification settings - Fork 0
Entwicklung
Alexander edited this page Nov 9, 2016
·
2 revisions
- git und git-flow
mkdir mediathekview
cd mediathekview
git clone https://github.com/mediathekview/FLAPI.git
cd FLAPI
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.