Grâce à cette astuce vous allez pouvoir git add . & git commit et git push en 1 seule commande !

Add these lines in your conso :

function lazygit() {
git add .
git commit -a -m "$1"
git push
}

Try it :

lazygit "first push"

Easy and fast !

Create a database

php bin/console doctrine:database:create

Update database

php app/console doctrine:schema:update --force

Create a bundle

php bien/console generate:bundle

Create a entity

php bin/console generate:doctrine:entity

Crud entity

php bin/console generate:doctrine:crud

Cleach cache

php bin/console cache:warmup