Friday, February 19, 2016

non-existent service “fos_user.doctrine_registry”

in your app/config/config.yml, you have to alias fos_user.doctrine_registry to doctrine

services:
    fos_user.doctrine_registry:
        alias: doctrine

Git get all remote branches

git branch -r \ | grep -v '\->' \ | sed "s,\x1B\[[0-9;]*[a-zA-Z],,g" \ | while read remote; do \ git branc...