私のマシンからgit bashを使って新しいリポジトリを作成する方法は?git bashを使ってGithubで新しいリポジトリを作成するには?
mkdir ~/Hello-World
cd ~/Hello-World
git init
touch README
git add README
git commit -m 'first commit'
git remote add origin https://github.com/username/Hello-World.git
git push origin master
しかし、私は取得しています:
は、私は、以下の手順に続く「致命的なエラー:サーバー上で更新サーバー情報を実行したのですか?」
Duplicate http://stackoverflow.com/a/27456812/874188には、このためのAPIが(現在は?)存在することが示唆されています。 – tripleee