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 st='status', | |
| alias di='diff', | |
| alias co='checkout', | |
| alias ci='ci commit', | |
| alias br='branch', | |
| alias sta='stash', | |
| alias llog='log --date=local', | |
| alias flog='log --pretty=fuller --decorate', | |
| alias lg='log --graph #{pretty_format} --abbrev-commit --date=relative\', | |
| alias lol='log --graph --decorate --oneline', |
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
| curl -i http://uaa.local.pcfdev.io/oauth/token \ | |
| -d grant_type=password \ | |
| -d username=admin \ | |
| -d password=admin \ | |
| -d scope= \ | |
| -H "Authorization: Basic Y2Y6" \ | |
| -H "Content-Type: application/x-www-form-urlencoded" \ | |
| -H "Accept: application/json" -X POST | |
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
| import static org.junit.jupiter.api.Assertions.*; | |
| import org.json.JSONObject; | |
| import org.junit.jupiter.api.Test; | |
| class WillItConnectV2ControllerTest { | |
| private WillItConnectV2Controller controller; | |
| @Test | |
| void testWillItConnect() { |
OlderNewer