git rebase -i <COMMIT_SHA> -x "git commit --amend --reset-author -CHEAD"For example:
git rebase -i HEAD~3 -x "git commit --amend --reset-author -CHEAD"| function getAllMuxes() { | |
| return fetch('/api/mpegts/mux/grid', | |
| { | |
| body: 'start=0&limit=999999999&sort=name&dir=ASC', method: 'POST', | |
| credentials: 'include', | |
| headers: { | |
| 'Accept': 'application/json, application/xml, text/plain, text/html, *.*', | |
| 'Content-Type': 'application/x-www-form-urlencoded; charset=utf-8' | |
| } | |
| } |
| There are a lot of complaints going around about Laravel these days, but a lot | |
| of the important ones seem to be missing from the spotlight. | |
| Bugfixes, issues and pull requests being left open for months with no | |
| clarification of intent: | |
| - https://github.com/laravel/framework/pull/1799 | |
| - https://github.com/laravel/framework/issues/1963 | |
| - https://github.com/laravel/framework/issues/2089 | |
| - https://github.com/laravel/framework/issues/2234 |
| <?php | |
| use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition; | |
| use Symfony\Component\Config\Definition\Builder\TreeBuilder; | |
| use Symfony\Component\Config\Definition\ConfigurationInterface; | |
| /** | |
| * Helper function to create recursive nodes | |
| */ | |
| function recursiveNode(string $name, callable $callback) |
| rabbitmqctl add_user test test | |
| rabbitmqctl set_user_tags test administrator | |
| rabbitmqctl set_permissions -p / test ".*" ".*" ".*" |