$SCALA_HOME
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
| 1. Set up your .ssh/config file as below | |
| Host myserver | |
| Hostname dnsresolvablename.com | |
| User ecuser | |
| Host anotherserver | |
| Hostname 134.123.23.12 | |
| IdentityFile <YoursshKeyLocation>/yourkey-keypair.pem | |
| User root |
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
| Find from which branch a tag came from | |
| git branch -a --contains tagname | |
| Find the latest tag | |
| git describe --abbrev=0 --tags | |
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
| mysqldbcompare --server1=user:password@host1 --server2=user:password@host2 host1dbname:host2dbname --changes-for=server2 -a --difftype=sql --skip-data-check --skip-row-count |