takyamamoto / Usage-Github

How to use Github (Japanese)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Usage-Github

How to use Github (Japanese)

create a new repository on the command line

echo "# test" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/userID/RepositoryName.git
git push -u origin master

push an existing repository from the command line

git remote add origin https://github.com/userID/RepositoryName.git
git push -u origin master

Commit message

Gitのコミットメッセージの書き方
GitHubで使われている実用英語コメント集

Write README.md

わかりやすいREADME.mdを書く

Markdown

Markdown記法 サンプル集

About

How to use Github (Japanese)