e3d7b54ca3
Former-commit-id: bb0edac46772972b4c99a84b8e1791f43b9195f5
5 lines
158 B
Bash
Executable File
5 lines
158 B
Bash
Executable File
#!/bin/sh
|
|
OLD_VER=$1
|
|
NEW_VER=$2
|
|
git diff --ignore-all-space $OLD_VER $NEW_VER | filterdiff -i "*.cs" -x '*/Test/*' | egrep "\+\+\+|[+-]\s*(public|protected)"
|