diff --git a/README.md b/README.md index 03fedce..5a14cc8 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ +* [Everyday Git in twenty commands or so](https://github.com/git-tips/tips#everyday-git-in-twenty-commands-or-so) * [Overwrite pull](https://github.com/git-tips/tips#overwrite-pull) * [List of all files till a commit](https://github.com/git-tips/tips#list-of-all-files-till-a-commit) * [Git reset first commit](https://github.com/git-tips/tips#git-reset-first-commit) @@ -70,6 +71,11 @@ +## Everyday Git in twenty commands or so +```sh +git help everyday +``` + ## Overwrite pull ```sh git fetch --all && git reset --hard origin/master diff --git a/tips.json b/tips.json index d796ff4..3b52904 100644 --- a/tips.json +++ b/tips.json @@ -1,4 +1,8 @@ [ + { + "title": "Everyday Git in twenty commands or so", + "tip": "git help everyday" + }, { "title": "Overwrite pull", "tip": "git fetch --all && git reset --hard origin/master" @@ -241,7 +245,7 @@ "tip": "git bundle create " }, { - "title": "Import form a bundle", + "title": "Import from a bundle", "tip": "git clone repo.bundle -b " }, {