If the command line doesn't return anything, it means you created the file correctly! 3. Get the status of your local repository. Thegit statuscommand tells you about how your project is progressing in compariso
Fortunately, you can add the -p/--patch option, and it will show you the diffs in “patch” format: Shell $ git stash show -p stash@{2} diff --git a/file1 b/file1 index e212970..04dbd7b 100644 --- a/file1 +++ b/file1 @@ -1 +1,2 @@ file1 +editing file1 Here ...