Merge pull request #55 from surfer190/master

Provide more descriptive header
This commit is contained in:
hemanth.hm 2016-06-05 09:09:25 +05:30
commit 1a29e6051d
2 changed files with 2 additions and 2 deletions

View File

@ -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;
};

View File

@ -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"]
}, {