start new:
tmux
start new with session name:
tmux new -s myname
| 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 |
| ### Core library for EchoSign APIs | |
| ### Use a wrapper file for validations & response handling | |
| ### Get a Developer Edition account & replace "YOUR_ACCOUNT_API_KEY" with API key of your account. | |
| ### With Rails, use Savon gem for SOAP based requests. | |
| module EchoSignApi | |
| API_URI = 'https://secure.echosign.com/services/EchoSignDocumentService15?wsdl' | |
| API_KEY = YOUR_ACCOUNT_API_KEY |