DSL主催の主催の「Python-実践AIモデル構築-100本ノック」のもくもく会用のリポジトリになります.
6/4〜6/17 21:00〜22:00 『Python-実践AIモデル構築-100本ノック」』 このGoogle フォームから申し込みをお願いします!途中参加も大歓迎です! [Google Form]:(https://forms.gle/GbWyQ6e8cUFPHgQd6)参加申し込み確認後、Slackチャンネルに招待します。
- GitHubアカウント作成方法 https://qiita.com/ayatokura/items/9eabb7ae20752e6dc79d
- GitHubのフォークからプッシュまで https://docs.github.com/ja/get-started/quickstart/fork-a-repo
- GitHubでDSLの今回のリポジトリを検索(URL:https://github.com/Data-Science-League/23_06_04_mokumoku_practical_ai_modeling.git)
- 画面右上の「fork」からforkする
- クローンする:
git clone https://github.com/[GitHubユーザー名]/23_06_04_mokumoku_practical_ai_modeling.git
- クローンしたフォルダ内に移動:
cd [クローンしたフォルダ名]
- upstream登録する:
git remote add upstream https://github.com/Data-Science-League/23_06_04_mokumoku_practical_ai_modeling.git
git remote -v
で確認。以下のようになっていればOK。
origin https://github.com/[GitHubユーザー名]/23_06_04_mokumoku_practical_ai_modeling.git (fetch)
origin https://github.com/[GitHubユーザー名]/23_06_04_mokumoku_practical_ai_modeling.git (push)
upstream https://github.com/Data-Science-League/23_06_04_mokumoku_practical_ai_modeling.git (fetch)
- upstream https://github.com/Data-Science-League/23_06_04_mokumoku_practical_ai_modeling.git (push)
- フォルダを作成し、その中に何かファイルを作る
git add .
git commit -m '[コミットメッセージ(日付 何ページまで進んだか 名前)]'
git push origin main
- 自分のGitHubページの今イベントのリポジトリに行き、「Pull requests」→「New pull request」→「Create pull request」→「Create pull request」 ※pushするものは自分の名前をフォルダ名にして一つにまとめてpushしてください
- GitHubの設定を行う
- 本を進める
- GitHubにpushしてpull requestを出す