Baseado no Artigo IMasters
git fetch origin pull/ID/head:NOMEBRANCH
git checkout NOMEBRANCH
- ID: ID do Pull Request;
- NOMEBRANCH: é um nome qualquer definido para a branch que será criada.
Resposta do Stackoverflow Aqui!
This is nothing to do with Django, but depends on the collation of your database tables. The collation is what determines how to sort and compare characters, and you need to choose one that compares accented and non-accented characters as equal. If you're using MySQL, a good collation would be utf8_general_ci.
- Entre na linha de comando do container Postgres:
docker exec -it postgres-server bash
- Identificando Locales instalados
locale -a
- Instalando novo Locale
ls /usr/share/i18n/locales
localedef -i pt_BR -f UTF-8 pt_BR.UTF-8
- Configurando Locale padrão
sudo localectl set-locale LANG=pt_BR.UTF-8
Uma alternativa ao comando anterior é inserir manualmente o Locale no arquivo /etc/locale.conf adicionando a seguinte diretiva ao arquivo:
LANG=pt_BR.UTF-8