See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| chmod 777 config.php | |
| chmod 777 -R cache | |
| chmod 777 -R files | |
| chmod 777 -R media | |
| chmod 777 -R engine/Shopware/Plugins/Community | |
| chmod 777 -R logs | |
| chmod 777 -R engine/Shopware/Plugins/Default | |
| chmod 777 -R web/cache/ | |
| chmod 777 -R recovery/ | |
| chmod 777 -R themes/Frontend |
| public class Sorting | |
| { | |
| /* | |
| private static Integer getSize(Object[] array) | |
| { | |
| Integer size = 0; | |
| for(Object e : array) | |
| { | |
| size++; |