1
0
mirror of https://github.com/namibia/tips.git synced 2025-01-09 00:21:14 +00:00

Formatting tabs into spaces.

Doxie throws errors like '[doxie] Invalid JSON input: "Unexpected token	 in JSON at position 11987"' otherwise
This commit is contained in:
David-Wobrock 2016-06-08 22:00:17 +02:00
parent 9f5a85580a
commit c49409830a
2 changed files with 32 additions and 33 deletions

View File

@ -706,7 +706,6 @@ 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
@ -714,6 +713,7 @@ 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

View File

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