diff --git a/Common Commands.md b/Common Commands.md index 894dde6..5cfd6c8 100644 --- a/Common Commands.md +++ b/Common Commands.md @@ -1,13 +1,5 @@ #Common Commands - -##Reviewing Changes -* `git status` : List the files you've changed and those you still need to add or commit -* Viewing File Differences : - * `git diff` : Shows file differences not yet staged. - * `git diff --base ` : View the changes against the base file. - * `git diff ` : View changes in source branch against a target. -* `git log` : View summary of all commits made so far in the current branch. - +---- ##Making changes * Adding Files * `git add ` : @@ -20,3 +12,13 @@ * Unstaging Files * `git reset ` +##Reviewing Changes +* `git status` : List the files you've changed and those you still need to add or commit +* Viewing File Differences : + * `git diff` : Shows file differences not yet staged. + * `git diff --base ` : View the changes against the base file. + * `git diff ` : View changes in source branch against a target. +* `git log` : View summary of all commits made so far in the current branch. + + +