From 70ba66296b28e243d3bbb27e75ccbcaac49b7e19 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 28 May 2024 12:28:33 +0000 Subject: [PATCH] Update to 2 in STEP and README.md --- .github/steps/-step.txt | 2 +- README.md | 80 +++++++++++++++++++---------------------- 2 files changed, 38 insertions(+), 44 deletions(-) diff --git a/.github/steps/-step.txt b/.github/steps/-step.txt index d00491f..0cfbf08 100644 --- a/.github/steps/-step.txt +++ b/.github/steps/-step.txt @@ -1 +1 @@ -1 +2 diff --git a/README.md b/README.md index 97b379c..98d7d0f 100644 --- a/README.md +++ b/README.md @@ -16,65 +16,59 @@ _GitHub Copilot can help you code by offering autocomplete-style suggestions rig -## Step 1: Leverage Codespaces with VS Code for Copilot +## Step 2: Seeing AI code suggestions in a Javascript file! -_Welcome to "Develop With AI Powered Code Suggestions Using GitHub Copilot and VS Code"! :wave:_ +_Nice work! :tada: You created a Codespace using a devcontainer file that installed Copilot!_ -GitHub Copilot is an AI pair programmer that helps you write code faster and with less work. It draws context from comments and code to suggest individual lines and whole functions instantly. GitHub Copilot is powered by OpenAI Codex, a generative pretrained language model created by OpenAI. +GitHub Copilot provides suggestions for numerous languages and a wide variety of frameworks, but works especially well for Python, JavaScript, TypeScript, Ruby, Go, C# and C++. The following samples are in JavaScript, but other languages will work similarly. -**Copilot works with many code editors including VS Code, Visual Studio, JetBrains IDE, and Neovim.** +Let's try this out utilizing Javascript for Copilot. -Additionally, GitHub Copilot is trained on all languages that appear in public repositories. For each language, the quality of suggestions you receive may depend on the volume and diversity of training data for that language. +### :keyboard: Activity: Add a Javascript file and start writing code -Using Copilot inside a Codespace shows just how easy it is to get up and running with GitHub's suite of [Collaborative Coding](https://github.com/features#features-collaboration) tools. +1. From inside the codespace in the VS Code explorer window, create a new file. -> **Note** -> This skills exercise will focus on leveraging GitHub Codespace. It is recommended that you complete the GitHub skill, [Codespaces](https://github.com/skills/code-with-codespaces), before moving forward with this exercise. +> **Note**: +> If you closed the Codespace from above, please open it back up or create a new Codespace. -### :keyboard: Activity: Enable Copilot inside a Codespace +2. Name the file `skills.js` +3. Verify your new file looks like: + ![Screen Shot 2023-03-09 at 9 21 34 AM](https://user-images.githubusercontent.com/26442605/224105906-d1beb531-b747-4c7a-85ba-a12526488422.png) +4. In the `skills.js` file, type the following function header. -**We recommend opening another browser tab to work through the following activities so you can keep these instructions open for reference.** + ``` + function calculateNumbers(var1, var2) + ``` + + GitHub Copilot will automatically suggest an entire function body in grayed text. Below is an example of what you'll most likely see, but the exact suggestion may vary. + ![Screen Shot 2023-04-27 at 10 23 06 AM](https://user-images.githubusercontent.com/26442605/234941079-b4bf3e9d-fc70-4b20-b74c-0ee753ba344e.png) -Before you open up a codespace on a repository, you can create a development container and define specific extensions or configurations that will be used or installed in your codespace. Let's create this development container and add copilot to the list of extensions. +5. Press `Tab` to accept the suggestion. + +### :keyboard: Activity: Push code to your repository from the codespace + +1. Use the VS Code terminal to add the `skills.js` file to the repository: -1. Navigating back to your **Code** tab of your repository, click the **Add file** drop-down button, and then click `Create new file`. -1. Type or paste the following in the empty text field prompt to name your file. ``` - .devcontainer/devcontainer.json + git add skills.js ``` -1. In the body of the new **.devcontainer/devcontainer.json** file, add the following content: + +2. Next from the VS Code terminal stage and commit the changes to the repository: + + ``` + git commit -m "Copilot first commit" + ``` + +3. Finally from the VS Code terminal push to code to the repository: + ``` - { - // Name this configuration - "name": "Codespace for Skills!", - "customizations": { - "vscode": { - "extensions": [ - "GitHub.copilot" - ] - } - } - } + git push ``` -1. Select the option to **Commit directly to the `main` branch**, and then click the **Commit new file** button. -1. Navigate back to the home page of your repository by clicking the **Code** tab located at the top left of the screen. -1. Click the **Code** button located in the middle of the page. -1. Click the **Codespaces** tab on the box that pops up. -1. Click the **Create codespace on main** button. - - **Wait about 2 minutes for the codespace to spin itself up.** - -1. Verify your codespace is running. The browser should contain a VS Code web-based editor and a terminal should be present such as the below: - ![Screen Shot 2023-03-09 at 9 09 07 AM](https://user-images.githubusercontent.com/26442605/224102962-d0222578-3f10-4566-856d-8d59f28fcf2e.png) -1. The `copilot` extension should show up in the VS Code extension list. Click the extensions sidebar tab. You should see the following: - ![Screen Shot 2023-03-09 at 9 04 13 AM](https://user-images.githubusercontent.com/26442605/224102514-7d6d2f51-f435-401d-a529-7bae3ae3e511.png) **Wait about 60 seconds then refresh your repository landing page for the next step.**