Skip to content

Instantly share code, notes, and snippets.

@liquidz
Created October 22, 2008 01:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save liquidz/18511 to your computer and use it in GitHub Desktop.
Save liquidz/18511 to your computer and use it in GitHub Desktop.
Global setup:
Download and install Git
git config --global user.email ***@***.com
Next steps:
mkdir opera-widgets
cd opera-widgets
git init
touch README
git add README
git commit -m 'first commit'
git remote add origin git@github.com:liquidz/opera-widgets.git
git push origin master
Existing Git Repo?
cd existing_git_repo
git remote add origin git@github.com:liquidz/opera-widgets.git
git push origin master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment