目次
最初のコミットを追加する方法
$ git init $ git remote add origin git@bitbucket.org:test/test.git $ git remote -v $ git config --global user.email "you@example.com" $ git config --global user.name "Your Name" $ git add test.txt $ git commit -m "First Commit" $ git push -u origin master