17 lines
635 B
TeX
17 lines
635 B
TeX
|
\begin{frame}[fragile]
|
||
|
\frametitle{Ergonomie}
|
||
|
\framesubtitle{bash}
|
||
|
\begin{minted}{bash}
|
||
|
source ~/.git-prompt.sh
|
||
|
GIT_PS1_SHOWDIRTYSTATE=1
|
||
|
GIT_PS1_SHOWSTASHSTATE=1
|
||
|
GIT_PS1_SHOWUNTRACKEDFILES=1
|
||
|
GIT_PS1_SHOWUPSTREAM="auto"
|
||
|
PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ '
|
||
|
\end{minted}
|
||
|
\begin{exampleblock}{git-prompt}
|
||
|
git-prompt.sh est un script définissant la fonction \_\_git\_ps1 permettant d'afficher des informations pertinentes sur l'état du dépôt git dans l'invite de commande.
|
||
|
\end{exampleblock}
|
||
|
% contenu (pas trop long) de la diapositive
|
||
|
\end{frame}
|