Files
p5js-tutorial/README.md
2024-10-18 08:42:49 +09:00

33 lines
1.0 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 2024_コース演習II_p5.jsチュートリアル
## 初期設定
### Git初期設定
VSCodeのターミナルで以下を実行
```powershell
git config --global user.email "学番@andrew.ac.jp"
git config --global user.name "自分の名前(アルファベット)"
```
### SSH鍵ペア生成
[ssh-keygenを用いて秘密鍵と公開鍵を作るWindows10とLinuxの違い #PowerShell - Qiita](https://qiita.com/overflowfl/items/14a2486df85fd7efac85)
### リポジトリフォーク
リポジトリ画面右上「フォーク」を押して自分用のリポジトリを生成
### リポジトリクローン
- VSCodeの新規ウィンドウを開き「Git リポジトリのクローン」を押す
- リポジトリ画面右上の「HTTPS」を押して表示されるURLをコピーし、VSCodeの当該画面に入力
- ブラウザで認証確認ページが出るので許可を押す
## 教科書
基本は下記URLを参考に学習を進めていく。
[文系大学生のためのp5.js入門](https://zenn.dev/ojk/books/intro-to-p5js)