diff --git a/doc/git.cmds b/doc/git.cmds
new file mode 100644
index 0000000000000000000000000000000000000000..c26a9effaca5ab5ba79ff36f54dbc760baea8e81
--- /dev/null
+++ b/doc/git.cmds
@@ -0,0 +1,13 @@
+## Add single file after change
+git add -f DDCond/include/DDCond/ConditionsTextRepository.h
+
+## Add all changes interactively with asking
+git add -p
+
+## Equiv to svn diff (after 'git add')
+git diff --staged
+
+## Equiv to svn diff (raw stuff)
+git diff
+
+## Equiv svn status