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
| # Create the script and place it in ~/.local/bin/gitclean, setting it +x | |
| echo '#!/usr/bin/env bash | |
| # Update remote references | |
| git fetch --prune | |
| # Identify and delete local branches that no longer exist on remote | |
| git branch -vv | grep "gone]" | awk "{print \$1}" | xargs git branch -D | |
| ' > ~/.local/bin/gitclean && chmod +x ~/.local/bin/gitclean |
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 | |
| namespace App\Providers; | |
| use Illuminate\Support\ServiceProvider; | |
| use Illuminate\Support\Facades\Route; | |
| use Filament\Support\Facades\FilamentView; | |
| use Filament\View\PanelsRenderHook; | |
| use Symfony\Component\HttpFoundation\StreamedResponse; |