diff --git a/README.md b/README.md index 73f9d30..a284765 100644 --- a/README.md +++ b/README.md @@ -706,14 +706,14 @@ git checkout master && git branch --no-merged ``` ## Find guilty with binary search - ```sh -git bisect start # Search start -git bisect bad # Set point to bad commit -git bisect good v2.6.13-rc2 # Set point to good commit|tag -git bisect bad # Say current state is bad -git bisect good # Say current state is good -git bisect reset # Finish search +git bisect start # Search start +git bisect bad # Set point to bad commit +git bisect good v2.6.13-rc2 # Set point to good commit|tag +git bisect bad # Say current state is bad +git bisect good # Say current state is good +git bisect reset # Finish search + ``` ## Bypass pre-commit and commit-msg githooks diff --git a/tips.json b/tips.json index 9f26e04..5d804b7 100644 --- a/tips.json +++ b/tips.json @@ -285,40 +285,39 @@ "title": "Count unpacked number of objects and their disk consumption.", "tip": "git count-objects --human-readable" }, { - "title": "Prune all unreachable objects from the object database.", - "tip": "git gc --prune=now --aggressive" -},{ - "title": "Instantly browse your working repository in gitweb.", - "tip": "git instaweb [--local] [--httpd=] [--port=] [--browser=]" -},{ - "title": "View the GPG signatures in the commit log", - "tip": "git log --show-signature" + "title": "Prune all unreachable objects from the object database.", + "tip": "git gc --prune=now --aggressive" +}, { + "title": "Instantly browse your working repository in gitweb.", + "tip": "git instaweb [--local] [--httpd=] [--port=] [--browser=]" +}, { + "title": "View the GPG signatures in the commit log", + "tip": "git log --show-signature" }, { "title": "Remove entry in the global config.", "tip": "git config --global --unset " -},{ +}, { "title": "Checkout a new branch without any history", "tip": "git checkout --orphan " -},{ - "title": "File diff between staging and the last file version.", - "tip": "git diff --staged" -},{ - "title": "Extract file from another branch.", - "tip": "git show :" }, { - "title": "List only the root and merge commits.", - "tip": "git log --first-parent" + "title": "File diff between staging and the last file version.", + "tip": "git diff --staged" }, { - "title": "Merge previous two commits into one.", - "tip": "git rebase --interactive HEAD~2" + "title": "Extract file from another branch.", + "tip": "git show :" }, { - "title": "List all branch is WIP", - "tip": "git checkout master && git branch --no-merged" + "title": "List only the root and merge commits.", + "tip": "git log --first-parent" +}, { + "title": "Merge previous two commits into one.", + "tip": "git rebase --interactive HEAD~2" +}, { + "title": "List all branch is WIP", + "tip": "git checkout master && git branch --no-merged" +}, { + "title": "Find guilty with binary search", + "tip": "git bisect start # Search start \ngit bisect bad # Set point to bad commit \ngit bisect good v2.6.13-rc2 # Set point to good commit|tag \ngit bisect bad # Say current state is bad \ngit bisect good # Say current state is good \ngit bisect reset # Finish search \n" }, { - "title": "Find guilty with binary search", - "tip": "git bisect start # Search start \ngit bisect bad # Set point to bad commit \ngit bisect good v2.6.13-rc2 # Set point to good commit|tag \ngit bisect bad # Say current state is bad \ngit bisect good # Say current state is good \ngit bisect reset # Finish search \n" -}, - { "title": "Bypass pre-commit and commit-msg githooks", "tip": "git commit --no-verify" - }] +}]