View Single Post
Schturman's Avatar
Posts: 5,339 | Thanked: 4,133 times | Joined on Jan 2010 @ Israel
#1893
Originally Posted by coderus View Post
i making file with following way:
Code:
mkdir workplace
cd workplace
#copy allfiles you want to modify here
git init
git add file.qml # or any other files
git commit -m "Init"
#make changes in file.qml and any other files
git diff > unified_diff.patch
Work like a charm, thanks.
One question, why it not show me this stuff in the patch file, like in your file for example:
Code:
commit 5ee14a4d543be4f502301cac136834475adc1899
Author: CODeRUS <coderusinbox@gmail.com>
Date:   Wed Feb 18 18:30:06 2015 +0500

    [v0.0.2] Added background with multiple recepient support
I already setup this:
Code:
git config --global user.email "schturman@hotmail.com"
git config --global user.name "Schturman"
?
Thanks