check logs
git log --pretty=oneline -3
git format-patch <patch number > master
git format-patch commitStart^..commitLatest --stdout > test.patch
git format-patch HEAD~
git apply --check <patch name>
git apply --reject --ignore-whitespace <patch name>
git log --pretty=oneline -3
git format-patch <patch number > master
git format-patch commitStart^..commitLatest --stdout > test.patch
git format-patch HEAD~
git apply --check <patch name>
git apply --reject --ignore-whitespace <patch name>