We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4d26afa + 9c321b0 commit 1a29e60Copy full SHA for 1a29e60
.doxie.render.toc.js
@@ -11,7 +11,7 @@ slugify = function(text){
11
var render = function(data) {
12
var data = data.data;
13
14
- var out = '* [' + data.title + '](https://github.com/git-tips/tips#' + slugify(data.title) + ')\n';
+ var out = '* [' + data.title + '](#' + slugify(data.title) + ')\n';
15
16
return out;
17
};
tips.json
@@ -179,7 +179,7 @@
179
"title": "Modify previous commit without modifying the commit message",
180
"tip": "git add --all && git commit --amend --no-edit"
181
}, {
182
- "title": "Prunes branches that have been deleted in the remote.",
+ "title": "Prunes references to remote branches that have been deleted in the remote.",
183
"tip": "git fetch -p",
184
"alternatives": ["git remote prune origin"]
185
0 commit comments