> git config --global user.name "François Viète" > git config --global user.email Francois.Viete@math.u-bordeaux1.fr > mkdir projet > cd projet > git init > ls -la > echo '\documentclass{article}' > projet.tex > git add projet.tex > git commit > echo '\begin{document}' >> projet.tex > git diff > git show > git commit > git help commit > git add projet.tex > git diff > git diff --cached > git commit > echo 'my project' >> projet.tex > git commit projet.tex > echo '\end{document}' >> projet.tex > git commit -a > git log > git show HEAD~1 > git show HEAD~2 > git log -p HEAD~2..HEAD > cd .. > git clone ssh://acces.math.u-bordeaux.fr/tmp/bill/projet2 > cd projet > git branch -a > git checkout -b slides-montpellier > echo '\usetheme{Montpellier}' >> projet.tex > git diff > git diff master > git diff HEAD master > git commit -a > git diff > git diff master > git diff HEAD master > git checkout master > echo 'all:' > Makefile > git add Makefile > git commit -a > ssh acces.math.u-bordeaux.fr git init --bare projet.git > git remote add origin ssh://acces.math.u-bordeaux.fr/~/projet.git > git push origin HEAD > echo '\begin{theorem}' >> projet.tex > git commit -a > cd .. > git clone ssh://acces.math.u-bordeaux.fr/~/projet.git projet3 > cd projet3 > git branch -a > git diff origin/master > git fetch > git diff origin/master > git merge origin/master > printf '\tlatex projet.tex' >> Makefile > git commit Makefile > git push origin master:fix-makefile > cd ../projet > git branch -a > git fetch > git branch -a > git rebase origin/fix-makefile > git log > git push origin :fix-makefile > cd ../projet2 > git fetch > git diff origin/master > git checkout -b end-theorem > echo '\end{theorem}' >> projet.tex > git commit -a > cd ../projet > echo 'Soit K un corps' >> projet.tex > git commit -a > git push origin HEAD > cd ../projet2 > git fetch > git rebase origin/master > git diff > perl -pi -e 's/^[<=>].*//' projet.tex > git diff > git add projet.tex > git rebase --continue > git push origin HEAD > git push origin :end-theorem > git push origin HEAD > cd ../projet > echo 'Soit p un nombre premier' >> projet.tex > git commit -a > git fetch > git merge origin/end-theorem > git diff > perl -pi -e 's/^[<=>].*//' projet.tex > git diff > git commit -a > git log > git show slides-montpellier > git archive slides-montpellier > montpellier.tar > tar tf montpellier.tar | less > git checkout slides-montpellier > git branch > git checkout slides-montpellier -b new-theme > git branch