Skip to content

Commit 11ca92f

Browse files
authored
Merge pull request #126 from jhlegarreta/AvoidTooLongLine
COMP: Fix too long line lengths
2 parents 87c8884 + 2d54060 commit 11ca92f

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

SoftwareGuide/Latex/Appendices/GitWorkflow.tex

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3205,9 +3205,12 @@ \subsubsection{Shell Customization}
32053205
location of the file varies depending on your system:
32063206

32073207
\begin{minted}[baselinestretch=1,fontsize=\footnotesize,linenos=false,bgcolor=ltgray]{bash}
3208-
source /opt/local/share/doc/git-core/contrib/completion/git-completion.bash # Mac with git installed by Mac Ports
3209-
source /usr/share/bash-completion/git # Linux
3210-
source /etc/bash\_completion.d/git # Linux debian/gentoo
3208+
# Mac with git installed by Mac Ports
3209+
source /opt/local/share/doc/git-core/contrib/completion/git-completion.bash
3210+
# Linux
3211+
source /usr/share/bash-completion/git
3212+
# Linux debian/gentoo
3213+
source /etc/bash\_completion.d/git
32113214
\end{minted}
32123215

32133216

@@ -3218,7 +3221,8 @@ \subsubsection{Shell Customization}
32183221
branch is active. Here are the commands for your \code{~/.bashrc} file:
32193222

32203223
\begin{minted}[baselinestretch=1,fontsize=\footnotesize,linenos=false,bgcolor=ltgray]{bash}
3221-
source /etc/bash\_completion.d/git # or one of the appropriate paths from the above section
3224+
# Use the appropriate path from the above section
3225+
source /etc/bash\_completion.d/git
32223226
export GIT\_PS1\_SHOWDIRTYSTATE=1
32233227
export GIT\_PS1\_SHOWUNTRACKEDFILES=1
32243228
export GIT\_PS1\_SHOWUPSTREAM="verbose"

0 commit comments

Comments
 (0)