From b74c66177b43e0040393747c2fb771b782056300 Mon Sep 17 00:00:00 2001 From: Junko Fujiwara <84257987+junkofujiwara@users.noreply.github.com> Date: Sun, 13 Oct 2024 19:08:02 +0900 Subject: [PATCH 1/5] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5657e8f..840ec38 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # GitHub Copilot C++ Workshop - [:jp: Japanese](README.md) | [:us: English](README.md) + [:jp: Japanese](README.md) | [:us: English](README.en.md) こちらは、[GitHub Copilot](https://github.com/features/copilot) の使用方法を紹介するハンズオンワークショップです。異なる単位の間で変換を行うCLIツールを提供します。 @@ -70,4 +70,4 @@ buildするごとにテストを自動実行することも可能です。 - [ ] すべての`printf`と`scanf`をリファクタリングし、`std::cout`と`std::cin`を使用する - [ ] キロとポンドの間で変換するための新しい`Weight`変換クラスを追加する - [ ] コードの問題点を発見し、Copilotの助けを借りて問題を解決する -- [ ] あなたのアイデアで新しい機能を追加し、Copilotの助けを借りて実装する \ No newline at end of file +- [ ] あなたのアイデアで新しい機能を追加し、Copilotの助けを借りて実装する From a9f004da16cf470ca61e8e919bdf31f20bd40379 Mon Sep 17 00:00:00 2001 From: Junko Fujiwara <84257987+junkofujiwara@users.noreply.github.com> Date: Sun, 13 Oct 2024 19:08:24 +0900 Subject: [PATCH 2/5] Update README.en.md --- README.en.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.en.md b/README.en.md index 552d62b..c788e78 100644 --- a/README.en.md +++ b/README.en.md @@ -1,6 +1,6 @@ # GitHub Copilot C++ Workshop - [:jp: Japanese](README.md) | [:us: English](README.md) + [:jp: Japanese](README.md) | [:us: English](README.en.md) This is a hands-on workshop to demonstrate the usage of the [GitHub Copilot](https://github.com/features/copilot).
It is a CLI tool that allows users to convert between units of different types. @@ -38,4 +38,4 @@ The above commands are also all defined as tasks in the `.vscode/tasks.json` fil - [ ] Refactor all `printf` and `scanf` and use `std::cout` and `std::cin` instead - [ ] Add a new Conversion Class for `Weight` to convert in between Kilos and Pounds - [ ] Find any issue and fix the issue with the help of Copilot -- [ ] Add new feature with your ideas with the help of Copilot \ No newline at end of file +- [ ] Add new feature with your ideas with the help of Copilot From 9839b7de763a26e0cad78269af42d0adf3e2d362 Mon Sep 17 00:00:00 2001 From: Junko Fujiwara <84257987+junkofujiwara@users.noreply.github.com> Date: Sun, 13 Oct 2024 19:10:29 +0900 Subject: [PATCH 3/5] Update PREP.md --- PREP.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PREP.md b/PREP.md index 3eb7c66..a6c096f 100644 --- a/PREP.md +++ b/PREP.md @@ -3,6 +3,7 @@ ## Prerequisites ### GitHub Copilot +- GitHub Account - GitHub Copilot License - [VSCode](https://code.visualstudio.com/download) @@ -37,4 +38,4 @@ cmake --build build ## Trust Center - [GitHub Trust Center](https://github.com/trust-center) -- [GitHub Copilot Trust Center](https://copilot.github.trust.page/) \ No newline at end of file +- [GitHub Copilot Trust Center](https://copilot.github.trust.page/) From 63de5ae8f8264681bf6970a28c02e8f47239f678 Mon Sep 17 00:00:00 2001 From: Junko Fujiwara <84257987+junkofujiwara@users.noreply.github.com> Date: Tue, 15 Oct 2024 16:41:48 +0900 Subject: [PATCH 4/5] Update PREP.md --- PREP.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/PREP.md b/PREP.md index a6c096f..1ea8c20 100644 --- a/PREP.md +++ b/PREP.md @@ -32,10 +32,6 @@ cmake -S . -B build cmake --build build ``` -## Shortcut Information -- [VS Code](https://docs.github.com/en/enterprise-cloud@latest/copilot/managing-copilot/configure-personal-settings/configuring-github-copilot-in-your-environment?tool=vscode) -- [JetBrains IDE](https://docs.github.com/en/enterprise-cloud@latest/copilot/managing-copilot/configure-personal-settings/configuring-github-copilot-in-your-environment?tool=visualstudio) - ## Trust Center - [GitHub Trust Center](https://github.com/trust-center) - [GitHub Copilot Trust Center](https://copilot.github.trust.page/) From 687a59c58aa0dfc99110d91d6eebadfeb3027466 Mon Sep 17 00:00:00 2001 From: Junko Fujiwara <84257987+junkofujiwara@users.noreply.github.com> Date: Wed, 16 Oct 2024 20:14:27 +0900 Subject: [PATCH 5/5] Update README.en.md --- README.en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.en.md b/README.en.md index c788e78..b45216a 100644 --- a/README.en.md +++ b/README.en.md @@ -19,7 +19,7 @@ cmake --build build ``` - To execute the tests: ```bash - /build/run-tests + ./build/run-tests ``` ### Run as VSCode Tasks The above commands are also all defined as tasks in the `.vscode/tasks.json` file. You can run them from the VSCode Task Runner from Command Palette (cmd+shift+p or ctrl+shift+p) and typing `Run Task`.: