Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Einen lokalen Featurebranch aktualisieren
(NEVER use pull on a feature branch, but pull to development and then rebase the feature branch on development)

Code Block
git checkout feature<feature-branchbranch>
git pull --rebase upstream development

...

Code Block
languagenone
git branch -m <newname> (lokalen, aktuell ausgewählten Branch umbenennen)

Datenbank

Migration

Code Block
application@28c2:/app$ ./htdocs_symfony/bin/console doctrine:migrations:generate
application@28c2:/app$ ./htdocs_symfony/bin/console doctrine:migrations:list
application@28c2:/app$ ./htdocs_symfony/bin/console doctrine:migrations:migrate

...