This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INSERT INTO `regiones` (`id`, `region`) VALUES | |
(1, 'AMAZONAS'), | |
(2, 'ANCASH'), | |
(3, 'APURIMAC'), | |
(4, 'AREQUIPA'), | |
(5, 'AYACUCHO'), | |
(6, 'CAJAMARCA'), | |
(7, 'CALLAO'), | |
(8, 'CUSCO'), | |
(9, 'HUANCAVELICA'), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git filter-branch --env-filter ' | |
WRONG_EMAIL="[email protected]" | |
NEW_NAME="Dude Name" | |
NEW_EMAIL="[email protected]" | |
if [ "$GIT_COMMITTER_EMAIL" = "$WRONG_EMAIL" ] | |
then | |
export GIT_COMMITTER_NAME="$NEW_NAME" | |
export GIT_COMMITTER_EMAIL="$NEW_EMAIL" | |
fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[user] | |
name = Carlos Levano | |
email = [email protected] | |
[core] | |
editor = vim | |
excludesfile = ~/.gitignore_global | |
autocrlf = false | |
[alias] | |
a = add | |
br = branch |
NewerOlder