From 47a525a5349daf4e18fbf6a7b5206806398962b4 Mon Sep 17 00:00:00 2001 From: Vincent Klaiber Date: Tue, 29 Sep 2015 12:37:17 +0200 Subject: [PATCH] Purnes -> Prunes --- README.md | 4 ++-- tips.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 513693b..d7e2b00 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ * [rebases 'feature' to 'master' and merges it in to master ](https://github.com/git-tips/tips#rebases-feature-to-master-and-merges-it-in-to-master) * [Archive the `master` branch](https://github.com/git-tips/tips#archive-the-master-branch) * [Modify previous commit without modifying the commit message](https://github.com/git-tips/tips#modify-previous-commit-without-modifying-the-commit-message) -* [Purnes branches that have been deleted in the remote.](https://github.com/git-tips/tips#purnes-branches-that-have-been-deleted-in-the-remote) +* [Prunes branches that have been deleted in the remote.](https://github.com/git-tips/tips#prunes-branches-that-have-been-deleted-in-the-remote) * [Retrieve the commit hash of the initial revision.](https://github.com/git-tips/tips#retrieve-the-commit-hash-of-the-initial-revision) * [Visualize the version tree.](https://github.com/git-tips/tips#visualize-the-version-tree) * [Deploying git tracked subfolder to gh-pages](https://github.com/git-tips/tips#deploying-git-tracked-subfolder-to-gh-pages) @@ -381,7 +381,7 @@ git archive master --format=zip --output=master.zip git add --all && git commit --amend --no-edit ``` -## Purnes branches that have been deleted in the remote. +## Prunes branches that have been deleted in the remote. ```sh git fetch -p ``` diff --git a/tips.json b/tips.json index 6d459d1..d796ff4 100644 --- a/tips.json +++ b/tips.json @@ -210,7 +210,7 @@ "tip": "git add --all && git commit --amend --no-edit" }, { - "title": "Purnes branches that have been deleted in the remote.", + "title": "Prunes branches that have been deleted in the remote.", "tip": "git fetch -p", "alternatives":["git remote prune origin"] },