From 30d2f07360b7262b1b6dd02070078e6ce0fb6e83 Mon Sep 17 00:00:00 2001 From: Ivan Malopinsky Date: Mon, 9 Feb 2015 23:54:54 -0500 Subject: [PATCH] git delta usage --- Commands.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/Commands.md b/Commands.md index 63f4039..81baaa8 100644 --- a/Commands.md +++ b/Commands.md @@ -699,4 +699,22 @@ $ pwd .../very-deep-from-root-directory $ cd `git root` $ git add . && git commit +``` + +## git delta + +Lists files that differ from another branch. + +```bash +$ touch README.md +$ git setup +$ git checkout -b hello +$ echo hello >> README.md +$ git delta +README.md +$ touch Makefile +$ git add Makefile +$ git delta +Makefile +README.md ``` \ No newline at end of file