Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

git

Update lokales Repository

Lokalen development-Branch aktualisieren

git fetch --all
git pull upstream development

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

git checkout feature-branch
git pull --rebase upstream development

Repository auf github.com auf Stand halten

git push

Datenbank

Migration

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
  • No labels