Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .doxie.render.toc.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
Expand Down
2 changes: 1 addition & 1 deletion tips.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
}, {
Expand Down