/gist:117f9af8e6285c2608f5 Secret
Created
March 14, 2014 14:07
Star
You must be signed in to star a gist
This file contains 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
| [~/Code/pyopenssl]$ git remote -v | |
| lvh git@github.com:lvh/pyopenssl.git (fetch) | |
| lvh git@github.com:lvh/pyopenssl.git (push) | |
| [~/Code/pyopenssl]$ git status | |
| On branch contributing | |
| nothing to commit, working directory clean | |
| [~/Code/pyopenssl]$ git push lvh contributing | |
| fatal: No configured push destination. | |
| Either specify the URL from the command-line or configure a remote repository using | |
| git remote add <name> <url> | |
| and then push using the remote name | |
| git push <name> | |
| [~/Code/pyopenssl]$ git push lvh contributing | |
| [~/Code/pyopenssl]$ print $? | |
| 139 | |
| [~/Code/pyopenssl]$ git push --set-upstream lvh contributing | |
| [~/Code/pyopenssl]$ print $? | |
| 139 | |
| [~/Code/pyopenssl]$ git --version | |
| git version 1.9.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment