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
| alias gdno="git diff --name-only" | |
| alias gd="git diff" | |
| alias gcm="git commit -m" | |
| alias gaa="git add -A" | |
| alias gca="git commit --amend --no-edit" | |
| alias gcaa="git add --all && git commit --amend --no-edit" | |
| alias gnope="git checkout ." | |
| alias gwait="git reset HEAD" | |
| alias gundo="git reset --soft HEAD^" | |
| alias gl="git log --graph --pretty='\''%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'\'' --abbrev-commit" |
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 | |
| use Illuminate\Foundation\Testing\WithoutMiddleware; | |
| use Illuminate\Foundation\Testing\DatabaseMigrations; | |
| use Illuminate\Foundation\Testing\DatabaseTransactions; | |
| class ExamplePassportTest extends \PassportTestCase | |
| { | |
| use DatabaseTransactions; |