ユーザー情報確認

$git config user.name //ユーザーネーム

$git config user.email //メールアドレス

初期化

$git init

クローン

$git clone <https://github.com/hogehoge/hoge.git> //http

$git clone [email protected]:hogehoge/hoge.git //ssh

作業

$git pull origin リモートブランチ名

$git add . //ステージング

$git commit -m “コミットメッセージ” //コミット

$git merge ブランチ名 // “ブランチ名”を現在のブランチにマージ

$git push origin ブランチ名

ブランチ