From 0969a61d46a6a1d3d5dee4dc74707e5b7891d7d8 Mon Sep 17 00:00:00 2001 From: surfer190 Date: Thu, 2 Jun 2016 13:14:25 +0200 Subject: [PATCH 1/2] Change wording to show references are removed --- tips.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tips.json b/tips.json index 755eb1c..590227c 100644 --- a/tips.json +++ b/tips.json @@ -179,7 +179,7 @@ "title": "Modify previous commit without modifying the commit message", "tip": "git add --all && git commit --amend --no-edit" }, { - "title": "Prunes branches that have been deleted in the remote.", + "title": "Prunes references to remote branches that have been deleted in the remote.", "tip": "git fetch -p", "alternatives": ["git remote prune origin"] }, { From 9c321b0923c7b4dd85f6722386486439626af230 Mon Sep 17 00:00:00 2001 From: surfer190 Date: Thu, 2 Jun 2016 13:14:58 +0200 Subject: [PATCH 2/2] Remove absolute links --- .doxie.render.toc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.doxie.render.toc.js b/.doxie.render.toc.js index 92af283..bc74e84 100644 --- a/.doxie.render.toc.js +++ b/.doxie.render.toc.js @@ -11,7 +11,7 @@ slugify = function(text){ var render = function(data) { var data = data.data; - var out = '* [' + data.title + '](https://github.com/git-tips/tips#' + slugify(data.title) + ')\n'; + var out = '* [' + data.title + '](#' + slugify(data.title) + ')\n'; return out; };