= Gitの使い方 = == レポジトリの作成 == GithubやGitlabのウェブページから作るのが簡単である。 {{{ }}} == 開発の流れ == === コードを取得、編集、反映 === 関連するGitコマンド: clone, add, commit, push {{{ git clone git ... 開発 ... git add . git commit -m "Comments to describe the changes" git push # 最初のpushでは、-u remote/originが必要かも }}} === 開発ブランチの利用 === {{{ }}}