Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 327 Bytes

git_bitbucket.md

File metadata and controls

10 lines (8 loc) · 327 Bytes

When creating a new git repo on bitbucket

(go into the folder that you want to be the repository)

git init
git remote add origin https://[email protected]/secretgeek/test_appharbor.git
"# Hello" > readme.md
git add *
git commit . -m "funny comment"
git push --set-upstream origin master