Jusas / SQLite3UE4

SQLite3 Database Plugin for Unreal Engine 4
MIT License
68 stars 53 forks source link

Added New BPs #7

Closed KhArtNJava closed 9 years ago

KhArtNJava commented 9 years ago

Added BPs:

Index Create Index Create Indexes Drop Index Drop Table

KhArtNJava commented 9 years ago

I've changes old incorrect Author record of my prev commits. Changed by tutorial https://help.github.com/articles/changing-author-info/ and script:

git filter-branch --env-filter '

OLD_EMAIL="аыыа"
CORRECT_NAME="KhArtNJava"
CORRECT_EMAIL="khartnjava@gmail.com"

if [ "$GIT_COMMITTER_EMAIL" = "$OLD_EMAIL" ]
then
    export GIT_COMMITTER_NAME="$CORRECT_NAME"
    export GIT_COMMITTER_EMAIL="$CORRECT_EMAIL"
fi
if [ "$GIT_AUTHOR_EMAIL" = "$OLD_EMAIL" ]
then
    export GIT_AUTHOR_NAME="$CORRECT_NAME"
    export GIT_AUTHOR_EMAIL="$CORRECT_EMAIL"
fi
' --tag-name-filter cat -- --branches --tags
Jusas commented 9 years ago

Tried this, it creates quite a messy history with double commit entries. I'd rather not do this (regarding editing of the author record).

Jusas commented 9 years ago

Well, looks kind of messy with the double commits but what can you do. Merged.

KhArtNJava commented 9 years ago

I am sorry for this... I rarely do PR for other projects, and for my projects I never observe settings of the author.