chsh -s /bin/zsh
Author: runcodeguy
How to reset commit and discard all changes
git reset --hard CommitID
How to discard all changes in Git
git restore . && git clean -df
How to view content changes of the specified commit
git show CommitID
How to download repository using Git
git clone URL
How to set global name and email for all repositories in Git
git config --global user.name 'Name'
git config --global user.email 'Email'
How to show $PATH environment variable on Mac
echo $path
How to set $PATH environment variable on Mac
echo 'export PATH="/Your/Command/Path:$PATH"' >> ~/.zprofile
How to push all Git branches
git push --all
How to start processing jobs on the queue in Laravel
php artisan queue:work