In order to force myself to use git commands and not GUI I put here commands I may need.
git checkout <branch>
git checkout -b <branchname> origin/<branch>
| { | |
| "folders": | |
| [ | |
| { | |
| "path": "/C/xampp/htdocs/l4c.me", | |
| "folder_exclude_patterns": ["node_modules", "logs", "-p", "tmp"], | |
| "file_exclude_patterns": ["*.gitignore", "*.sample", "*.md"] | |
| } | |
| ] | |
| } |
| /** | |
| * This is based on the idea you have an authorization class done with: | |
| * auth.getToken to generate a token based on a ID and a password | |
| * auth.checkToken to validate this token (returning the ID of the app to use in req.username) | |
| * | |
| * NOTES: | |
| * I use a redis loader to set redis instance in res.locals | |
| * | |
| * I set burst and rate to 1 to easy check the override and the system working | |
| */ |