Skip to content

Latest commit

 

History

History
10 lines (10 loc) · 500 Bytes

Mostrar nome da branch e horas no terminal.md

File metadata and controls

10 lines (10 loc) · 500 Bytes

Mostrar nome da branch no terminal, basta inserir no final do arquivo ~/.bashrc fechar e abrir o terminal novamente https://warcontent.com/branch-git-no-terminal/

# show git branch
export PS1='\[\033[1;32m\]\u@\h\[\033[01;34m\] \w\[\033[0;32m\]$(__git_ps1 " (%s)")\[\033[0m\]$\[\033[00m\] '

Ou com hora minuto e segundo

# show git branch
export PS1='\[\033[1;32m\]\u@\h\[\033[01;34m\] \w\[\033[0;32m\] $(__git_ps1 "(%s)")\[\033[0;37m\]$(date +%X)\[\033[0m\]$\[\033[00m\] '