git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
<?php | |
$databases = array ( | |
'default' => | |
array ( | |
'default' => | |
array ( | |
'database' => 'meusite_local', | |
'username' => 'root', | |
'password' => 'root', | |
'host' => 'localhost', |
function lk_aussie_gateways( $available_gateways ) { | |
global $woocommerce; | |
if ($woocommerce->customer->get_country() == 'AU') { | |
unset( $available_gateways['cod'] ); | |
} | |
return $available_gateways; |
[global] | |
unix charset = UTF8 | |
workgroup = XXX | |
netbios name = XXX | |
server string = %h server (Samba, Ubuntu) | |
interfaces = lo eth0 | |
bind interfaces only = Yes | |
security = SHARE | |
obey pam restrictions = Yes | |
guest account = www-data |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream