- 2022年度、git練習用のレポジトリ
- 自分のハンドルネームでブランチを切った上で、testディレクトリ配下にファイルを作成し、プルリクエストを出してください!
- gitのインストール
- GitHubアカウントの作成
- このレポジトリをclone
- cloneしたレポジトリへ移動:
cd git_practice_2022 - ブランチを切る:
git checkout -b ${ブランチ名を入力} - test/ディレクトリ配下にファイルを作る
- check status:
git status- untrack filesに作ったファイルが表示されているはず
- add:
git add . - check status:
git status- Changes to be commitedに作ったファイルが表示されているはず
- commit:
git commit -m "${コミットメッセージを入力}" - check status:
git status- nothing to commit, working tree cleanと表示されているはず
- push:
git push origin ${ブランチ名を入力} - プルリクエストをmainブランチに対して出す
- マージされるのを待つ