Skip to content
Snippets Groups Projects
Commit 10c9dfa5 authored by Vermaat's avatar Vermaat
Browse files

Never use commit -a

parent 602b90e5
No related branches found
No related tags found
No related merge requests found
...@@ -193,7 +193,8 @@ Switched to a new branch 'simpsons' ...@@ -193,7 +193,8 @@ Switched to a new branch 'simpsons'
Let's continue working on branch \bt{simpsons}. Let's continue working on branch \bt{simpsons}.
\begin{lstlisting}[basicstyle=\ttfamily\footnotesize] \begin{lstlisting}[basicstyle=\ttfamily\footnotesize]
$ emacs FACTS.md $ emacs FACTS.md
$ git commit -am 'Edit character presence' $ git add FACTS.md
$ git commit -m 'Edit character presence'
[simpsons 0676334] Edit character presence [simpsons 0676334] Edit character presence
1 file changed, 1 insertion(+), 1 deletion(-) 1 file changed, 1 insertion(+), 1 deletion(-)
$ git status $ git status
...@@ -203,7 +204,7 @@ $ git status ...@@ -203,7 +204,7 @@ $ git status
nothing to commit (working directory clean) nothing to commit (working directory clean)
\end{lstlisting} \end{lstlisting}
\bigskip \bigskip
\includegraphics[width=9cm]{images/example-commit} \includegraphics[width=8cm]{images/example-commit}
\end{frame} \end{frame}
\begin{frame}[fragile] \begin{frame}[fragile]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment