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
| Let's say you want to apply some patches from someone else repository: | |
| # Cloning our fork | |
| $ git clone git clone git@github.com:ifad/rest-client.git | |
| # Adding (as "endel") the repo from we want to cherry-pick | |
| $ git remote add endel git://github.com/endel/rest-client.git | |
| # Fetch their branches | |
| $ git fetch endel |
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
| <?php | |
| ini_set("soap.wsdl_cache_enabled", FALSE); | |
| class SOAPStruct { | |
| function SOAPStruct($c) | |
| { | |
| $this->varFloat = $c; | |
| } | |
| } |
NewerOlder