git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| <?php | |
| //Don't forget to change the namespace! | |
| namespace App\Traits; | |
| use Cron\CronExpression; | |
| use Illuminate\Support\Carbon; | |
| use Illuminate\Console\Scheduling\ManagesFrequencies; | |
| trait Schedulable{ |
| function injectGitFileStatus() | |
| { | |
| const timeout = 5000; | |
| const addedColor = "#8dc149"; | |
| const modifiedColor = "#cbcb41"; | |
| const stagedColor = "#ca2820"; | |
| const ignoredOpacity = "0.4"; | |
| const explorer = document.getElementById("workbench.view.explorer"); | |
| if (explorer) |
| git branch -m old_branch new_branch # Rename branch locally | |
| git push origin :old_branch # Delete the old branch | |
| git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote |