Skip to content

Commit a810815

Browse files
authored
Merge pull request #36153 from github/repo-sync
Repo sync
2 parents 9c91228 + 9ea1545 commit a810815

File tree

6 files changed

+175
-5
lines changed

6 files changed

+175
-5
lines changed

content/get-started/exploring-projects-on-github/finding-ways-to-contribute-to-open-source-on-github.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ shortTitle: Contribute to open source
2020
---
2121
## Discovering relevant projects
2222

23-
If there's a particular topic that interests you, visit `github.com/topics/<topic>`. For example, if you are interested in machine learning, you can find relevant projects and good first issues by visiting https://github.com/topics/machine-learning. You can browse popular topics by visiting [Topics](https://github.com/topics). You can also search for repositories that match a topic you're interested in. For more information, see [AUTOTITLE](/search-github/searching-on-github/searching-for-repositories#search-by-topic).
23+
If there's a particular topic that interests you, visit `github.com/topics/<topic>`. For example, if you are interested in machine learning, you can find relevant projects and good first issues by visiting https://github.com/topics/machine-learning. You can browse popular topics by visiting [Topics](https://github.com/topics). You can also search for repositories that match a topic you're interested in. See [AUTOTITLE](/search-github/searching-on-github/searching-for-repositories#search-by-topic).
24+
25+
If you're interested in contributing to projects that **reduce the carbon emissions of software**, review [{% data variables.product.github %}'s Green Software Directory](https://github.com/github/GreenSoftwareDirectory).
2426

2527
If you've been active on {% data variables.product.prodname_dotcom %}, you can find personalized recommendations for projects and good first issues based on your past contributions, stars, and other activities in [Explore {% data variables.product.prodname_dotcom %}](https://github.com/explore).
2628

content/get-started/exploring-projects-on-github/saving-repositories-with-stars.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ You can search, sort, and filter your starred repositories and topics on your {%
2424
Starring makes it easy to find a repository or topic again later. You can see all the repositories and topics you have starred by going to your {% data variables.explore.your_stars_page %}.
2525

2626
{% ifversion fpt or ghec %}
27-
You can star repositories and topics to discover similar projects on {% data variables.product.github %}. When you star repositories or topics, {% data variables.product.github %} may recommend related content on your personal dashboard. For more information, see [AUTOTITLE](/get-started/exploring-projects-on-github/finding-ways-to-contribute-to-open-source-on-github) and [AUTOTITLE](/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-user-account-settings/about-your-personal-dashboard#staying-updated-with-activity-from-the-community).
27+
You can star repositories and topics to discover similar projects on {% data variables.product.github %}. For example, after you star [{% data variables.product.github %}'s Green Software Directory](https://github.com/github/GreenSoftwareDirectory), you will see other content related to green software on your personal dashboard.
2828
{% endif %}
2929

3030
Starring a repository also shows appreciation to the repository maintainer for their work. Many of {% data variables.product.prodname_dotcom %}'s repository rankings depend on the number of stars a repository has. In addition, [Explore {% data variables.product.prodname_dotcom %}](https://github.com/explore) shows popular repositories based on the number of stars they have.

content/get-started/learning-to-code/index.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ versions:
55
fpt: '*'
66
children:
77
- /reusing-other-peoples-code-in-your-projects
8+
- /learning-to-debug-with-github-copilot
89
shortTitle: Learn to code
910
---
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,165 @@
1+
---
2+
title: Learning to debug with GitHub Copilot
3+
intro: 'Identify and fix errors in your code by asking {% data variables.product.prodname_copilot %} for help.'
4+
topics:
5+
- Copilot
6+
versions:
7+
fpt: '*'
8+
shortTitle: Debug with Copilot
9+
---
10+
11+
Finding and fixing bugs in code can be frustrating, especially when you're a new developer. Thankfully, tools like {% data variables.product.prodname_copilot %} can quickly identify and squash bugs, letting you focus on more creative, interesting work.
12+
13+
## Prerequisites
14+
15+
The examples in this article assume you're using {% data variables.product.prodname_copilot %} to debug a Python project in {% data variables.product.prodname_vscode %} ({% data variables.product.prodname_vscode_shortname %}). To follow the examples, you need to:
16+
* Complete [Set up {% data variables.product.prodname_vscode %} with {% data variables.product.prodname_copilot_short %}](https://code.visualstudio.com/docs/copilot/setup-simplified) in the {% data variables.product.prodname_vscode %} documentation.
17+
* [Download Python](https://www.python.org/downloads/).
18+
* Install the [Python extension for {% data variables.product.prodname_vscode %}](https://marketplace.visualstudio.com/items?itemName=ms-python.python).
19+
20+
## Learning to debug through examples
21+
22+
There are two main situations you'll encounter when you try to run bugged code:
23+
24+
* Your code exits before it finishes running, and you receive an error message.
25+
* Your code runs without errors, but the output is different from what you expected.
26+
27+
Thankfully, {% data variables.product.prodname_copilot_short %} can help debug your code in both situations. To learn how, work through the following examples.
28+
29+
### Debugging an error with {% data variables.product.prodname_copilot %}
30+
31+
When you run bugged code, you'll often receive an error message. The message tells you the file and line where the error occurred and briefly describes what went wrong. However, error messages can be confusing. To fully understand and fix the bug, we can ask {% data variables.product.prodname_copilot_short %} for help.
32+
33+
Let's try this out with the [`bugged_dice_battle.py`](https://github.com/new2code/debug-with-copilot/blob/main/bugged_dice_battle.py) file in the [`new2code/debug-with-copilot`](https://github.com/new2code/debug-with-copilot) repository. This program simulates a dice battle between two players using the following code:
34+
35+
```python
36+
# Import the random module to easily generate pseudo-random numbers
37+
import random
38+
39+
# Define a function that simulates a dice battle between two players
40+
def dice_battle():
41+
42+
# Generate random numbers between 1 and 6 for each player's die roll
43+
die_1 = random.randint(1, 6)
44+
die_2 = random.randint(1, 6)
45+
46+
# Compare the die rolls and return the result as a string
47+
if die_1 > die_2:
48+
return "Player 1 rolled a " + die_1 + " and Player 2 rolled a " + die_2 + ". Player 1 wins!"
49+
elif die_1 < die_2:
50+
return "Player 1 rolled a " + die_1 + " and Player 2 rolled a " + die_2 + ". Player 2 wins!"
51+
else:
52+
return "Player 1 rolled a " + die_1 + " and Player 2 rolled a " + die_2 + ". It's a tie!"
53+
54+
print(dice_battle())
55+
```
56+
57+
First, we need to clone the repository locally:
58+
1. In {% data variables.product.prodname_vscode_shortname %}, open the Command Palette by pressing <kbd>Cmd</kbd>+<kbd>Shift</kbd>+<kbd>P</kbd> (Mac) or <kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>P</kbd> (Windows/Linux).
59+
1. Type `Git: Clone` and press <kbd>Enter</kbd>.
60+
1. Paste the URL of the `new2code/debug-with-copilot` repository:
61+
62+
```text copy
63+
https://github.com/new2code/debug-with-copilot
64+
```
65+
66+
1. Press <kbd>Enter</kbd>, then choose a location to save the repository on your computer.
67+
1. When prompted, open the repository in {% data variables.product.prodname_vscode_shortname %}.
68+
69+
Now that we've cloned the repository, let's run `bugged_dice_battle.py` to see the output:
70+
71+
1. Open the Command Palette by pressing <kbd>Cmd</kbd>+<kbd>Shift</kbd>+<kbd>P</kbd> (Mac) or <kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>P</kbd> (Windows/Linux).
72+
1. Type `Terminal: Create New Terminal` and press <kbd>Enter</kbd>.
73+
1. If you are using Mac or Linux, in the terminal tab, paste the following code:
74+
75+
```shell copy
76+
python bugged_dice_battle.py
77+
```
78+
79+
Otherwise, if you are using Windows, paste the following code:
80+
81+
```shell copy
82+
py bugged_dice_battle.py
83+
```
84+
85+
1. Press <kbd>Enter</kbd> to run the program.
86+
87+
Unfortunately, we get some error text in our terminal ending with the following message: `TypeError: can only concatenate str (not "int") to str`. To understand what this means, press <kbd>Command</kbd>+<kbd>Shift</kbd>+<kbd>I</kbd> (Mac) or <kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>I</kbd> (Windows/Linux) to open {% data variables.product.prodname_copilot_chat_short %}, then paste and send the following prompt:
88+
89+
```text copy
90+
Explain in depth why my code produces the following error and how I can fix it:
91+
92+
TypeError: can only concatenate str (not "int") to str
93+
```
94+
95+
{% data variables.product.prodname_copilot_short %} will respond that the error occurs because we are trying to concatenate the integers `die_1` and `die_2` to strings, and you can only concatenate strings to strings. It will then provide an updated version of our code that fixes the bug by using the `str()` function to convert the integers to strings before concatenating them.
96+
97+
### Debugging an incorrect output with {% data variables.product.prodname_copilot %}
98+
99+
Sometimes, bugged code runs without throwing any errors, but the output is clearly incorrect. In this case, debugging can be more difficult because {% data variables.product.prodname_vscode_shortname %} can't tell you the location or description of the bug.
100+
101+
For these "invisible" bugs, {% data variables.product.prodname_copilot_short %} is particularly useful. Let's get some hands-on experience using the [`bugged_factorial_finder.py`](https://github.com/new2code/debug-with-copilot/blob/main/bugged_factorial_finder.py) file in the [`new2code/debug-with-copilot`](https://github.com/new2code/debug-with-copilot) repository. The Python program is supposed to calculate a factorial, and it contains the following code:
102+
103+
```python
104+
# Initialize the factorial result to 1
105+
factorial = 1
106+
107+
# Initialize the input number to 6
108+
number = 6
109+
110+
# Loop from 1 to number (inclusive) and multiply factorial by each number
111+
for i in range(1, number + 1):
112+
factorial *= factorial * i
113+
114+
print(f"The factorial of {number} is {factorial}")
115+
```
116+
117+
Since we've already cloned the repository locally, let's run `bugged_factorial_finder.py` to see the output:
118+
119+
1. In {% data variables.product.prodname_vscode_shortname %}, open the Command Palette by pressing <kbd>Cmd</kbd>+<kbd>Shift</kbd>+<kbd>P</kbd> (Mac) or <kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>P</kbd> (Windows/Linux).
120+
1. Type `Terminal: Create New Terminal` and press <kbd>Enter</kbd>.
121+
1. If you are using Mac or Linux, in the terminal tab, paste the following code:
122+
123+
```shell copy
124+
python bugged_factorial_finder.py
125+
```
126+
127+
Otherwise, if you are using Windows, paste the following code:
128+
129+
```shell copy
130+
py bugged_factorial_finder.py
131+
```
132+
133+
1. Press <kbd>Enter</kbd> to run the program.
134+
135+
Unfortunately, the code isn't working as expected. We want it to return `720`, the correct value of 6 factorial, but the output is much higher than that.
136+
137+
To understand what went wrong, with the `bugged_factorial_finder.py` file open in {% data variables.product.prodname_vscode_shortname %}, open {% data variables.product.prodname_copilot_chat_short %} and send the following prompt:
138+
139+
```text copy
140+
Why is the output of this code so much higher than expected? Please explain in depth and suggest a solution.
141+
```
142+
143+
{% data variables.product.prodname_copilot_short %} will point out that, because we're using the `*=` operator, we're actually multiplying `factorial` by both `i` **and** `factorial`. In other words, we're multiplying by an extra `factorial` for each iteration of the loop.
144+
145+
To fix this error, {% data variables.product.prodname_copilot_short %} will suggest code that removes the extra `factorial` from the equation, or that changes the `*=` operator to `=`.
146+
147+
## Debugging your own project
148+
149+
Now that you've practiced debugging some simple programs with {% data variables.product.prodname_copilot_short %}, you can use the same methodologies to find and fix bugs hiding in your own work.
150+
151+
For example, to debug an error message generated by your code, send {% data variables.product.prodname_copilot_short %} the following prompt:
152+
153+
```text copy
154+
Explain in depth why my code produces the following error and how I can fix it:
155+
156+
YOUR-ERROR-MESSAGE
157+
```
158+
159+
Otherwise, if you're debugging an incorrect output, ask {% data variables.product.prodname_copilot_short %} why the output is incorrect and how you can fix it. For the best results, provide as much context as possible on how the output differs from your expectations.
160+
161+
With these tactics, you're well equipped to start squashing bugs in your project!
162+
163+
## Next steps
164+
165+
As you continue coding, you'll likely encounter specific problem scenarios and errors that are difficult to debug. For a list of potential issues and example {% data variables.product.prodname_copilot_chat_short %} prompts to fix them, see [AUTOTITLE](/copilot/example-prompts-for-github-copilot-chat/debugging-errors).

content/get-started/start-your-journey/finding-inspiration-on-github.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ Once you star repositories or follow people, you will see updates on their activ
4242
## Search for a topic or project on {% data variables.product.github %}
4343

4444
1. Navigate to https://github.com/search.
45-
1. Type a keyword or query into the search bar. {% ifversion fpt or ghec %}For example, try "how to build a webpage", or "skills-course".{% endif %} For more detailed information on how to search {% data variables.product.github %} for specific topics, repositories, or code, see [AUTOTITLE](/search-github/getting-started-with-searching-on-github/about-searching-on-github).
46-
1. Use the left sidebar to filter the results. {% ifversion fpt or ghec %}For example, to browse all repositories in the "skills-course" topic, search "skills-course", then filter by "Topic".{% endif %}
47-
1. Star the repositories that match your interests.
45+
1. Type a keyword or query into the search bar. For example, try "green software tools." For more detailed information about searching for specific topics, repositories, or code, see [AUTOTITLE](/search-github/getting-started-with-searching-on-github/about-searching-on-github).
46+
1. Use the left sidebar to filter the results. For example, to browse all repositories in the "green-software" topic, search "green-software", then filter by "Topic".
47+
1. Star the repositories that match your interests, such as [{% data variables.product.github %}'s Green Software Directory](https://github.com/github/GreenSoftwareDirectory).
4848

4949
## Following people and organizations on {% data variables.product.github %}
5050

content/rest/enterprise-admin/billing.md

+2
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,6 @@ autogenerated: rest
1717

1818
The `manage_billing:enterprise` scope is required for {% data variables.product.pat_v1_plural %} to access these endpoints.
1919

20+
> [!IMPORTANT] The API currently supports adding or removing up to 50 resources in a single operation.
21+
2022
<!-- Content after this section is automatically generated -->

0 commit comments

Comments
 (0)