Some cases:
- you started a bugfix out of develop, but it should be applied to a release branch
- you started on a branch and want to rebase it on some colleague's changes
| #!/bin/bash | |
| for file in $(git diff --cached --name-only | grep -E '\.ts$') | |
| do | |
| git show ":$file" | tslint "$file" | |
| if [ $? -ne 0 ]; then | |
| exit 1 | |
| fi | |
| done |
| range - IP Range Owner | |
| 46.148.30.0/23 - Infium LLC | |
| 62.109.0.0/19 - TheFirst-RU clients | |
| 62.122.72.0/23 - Leksim Ltd. | |
| 78.24.216.0/21 - TheFirst-RU clients | |
| 82.146.40.0/21 - Infium LLC | |
| 82.146.56.0/21 - TheFirst-RU clients | |
| 91.197.131.0/24 - Virtual Data Computing LLC | |
| 91.207.60.0/23 - PE Ivanov Vitaliy Sergeevich |
| /* iOS scrollpane jQuery plugin, v1.0 | |
| * ================================== | |
| * | |
| * (c) 2011 Dave Gurnell | |
| * http://boxandarrow.com | |
| * | |
| * Distributed under the Creative Commons Attribution 3.0 Unported licence: | |
| * http://creativecommons.org/licenses/by/3.0/ | |
| */ |