diff --git a/git-tutorial.tex b/git-tutorial.tex
index afc22457af7334085e23cdf831af5497a1aeb53a..6249b82dc28084138496d7ef459d6572d4fe5039 100644
--- a/git-tutorial.tex
+++ b/git-tutorial.tex
@@ -271,7 +271,14 @@ was already up to date with the remote master.
 The opposite operation to \verb|git pull| is \verb|git push|, to push
 local commits to the remote master branch.
 \begin{lstlisting}
-
+andersn@fiol: git push
+Counting objects: 8, done.
+Delta compression using up to 8 threads.
+Compressing objects: 100% (6/6), done.
+Writing objects: 100% (6/6), 3.99 KiB, done.
+Total 6 (delta 1), reused 0 (delta 0)
+To stodola.control.lth.se:work/computers/git-tutorial
+   ebf6fbb..15f6453  master -> master
 \end{lstlisting}
 
 \section{Further Reading}