You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: files/en-us/glossary/fork/index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ Forks are often seen in free and open source software development. This is now a
14
14
## See also
15
15
16
16
-[Fork](<https://en.wikipedia.org/wiki/Fork_(software_development)>) on Wikipedia
17
-
-[How to fork a GitHub repo](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/fork-a-repo) (fork as in a Git context)
17
+
-[How to fork a GitHub repo](https://docs.github.com/en/pull-requests/how-tos/work-with-forks/fork-a-repo) (fork as in a Git context)
Copy file name to clipboardExpand all lines: files/en-us/learn_web_development/about/index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -78,7 +78,7 @@ The topics presented are covered in differing levels of detail.
78
78
There are also several areas that we explicitly don't cover in this curriculum, namely:
79
79
80
80
- Exhaustive coverage of back-end languages/platforms. We do provide a brief introduction in [Node.js (Express)](/en-US/docs/Learn_web_development/Extensions/Server-side/Express_Nodejs) and [Python (Django)](/en-US/docs/Learn_web_development/Extensions/Server-side/Django) as it is useful to every web developer to understand how HTTP and server-side technologies work. However, we don't provide exhaustive coverage across multiple platforms; that would be out of scope for MDN.
81
-
- In-depth coverage of traditional relational databases (for example, [MySQL](https://dev.mysql.com/doc/) or [Postgres](https://www.postgresql.org/)) and other server-side datastores (for example, cloud databases such as [MongoDB](https://www.mongodb.com/) or [Google Cloud Datastore](https://cloud.google.com/products/datastore)). We provide a brief introduction to such technologies in our [Server-side website programming](/en-US/docs/Learn_web_development/Extensions/Server-side) modules.
81
+
- In-depth coverage of traditional relational databases (for example, [MySQL](https://dev.mysql.com/doc/) or [Postgres](https://www.postgresql.org/)) and other server-side datastores (for example, cloud databases such as [MongoDB](https://www.mongodb.com/) or [Firestore](https://cloud.google.com/products/firestore)). We provide a brief introduction to such technologies in our [Server-side website programming](/en-US/docs/Learn_web_development/Extensions/Server-side) modules.
82
82
- Deep-dive DevOps topics such as cloud platforms for provisioning and automation (for example, [Amazon AWS](https://aws.amazon.com/), [Google Cloud Platform](https://console.cloud.google.com/), and [Microsoft Azure](https://azure.microsoft.com/)) and containerization tools (for example, [Kubernetes](https://kubernetes.io/) and [Docker](https://www.docker.com/)). We lightly touch upon some tools that are considered to be in the DevOps space — like GitHub and automated testing tools — but these have distinct crossover into the front-end developer space.
83
83
- Graphic design beyond the basic knowledge outlined in [Design for developers](/en-US/docs/Learn_web_development/Core/Design_for_developers).
84
84
- Skills related to roles such as product and program management (for example, organization, research, and planning).
Copy file name to clipboardExpand all lines: files/en-us/learn_web_development/core/version_control/index.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,15 +23,15 @@ This module takes you through the essentials of version control using Git and Gi
23
23
24
24
## Guides
25
25
26
-
-[About GitHub and Git (from GitHub)](https://docs.github.com/en/get-started/start-your-journey/about-github-and-git)
26
+
-[What is GitHub? (from GitHub)](https://docs.github.com/en/get-started/start-your-journey/what-is-github)
27
27
- : This covers what Git and GitHub are, how they work together, and how to get started.
28
-
-[Hello, World (from GitHub)](https://docs.github.com/en/get-started/start-your-journey/hello-world)
28
+
-[Hello, World (from GitHub)](https://docs.github.com/en/get-started/using-github/hello-world)
29
29
- : This practical guide jumps right into using GitHub, teaching the basics of Git such as creating repositories and branches, making commits, and opening and merging pull requests.
- : The Git Handbook goes into a little more depth, explaining what a version control tool is, what a repository is, how the basic GitHub model works, Git commands and examples, and more.
32
32
-[Contributing to a project (from GitHub)](https://docs.github.com/en/get-started/exploring-projects-on-github/contributing-to-a-project)
33
33
- : Forking projects is essential when you want to contribute to someone else's code. This guide explains how.
- : A useful guide to managing pull requests. These requests are how you propose code changes to someone else's repository so they can review and potentially merge them into the main codebase.
- : Issues are like a forum for your GitHub project, where people can ask questions and report problems, and you can manage updates (for example assigning people to fix issues, clarifying the issue, letting people know things are fixed). This article tells you what you need to know about issues.
@@ -46,7 +46,7 @@ This module takes you through the essentials of version control using Git and Gi
46
46
47
47
- Other useful topics covered in GitHub Docs include:
48
48
-[Understanding the GitHub flow](https://docs.github.com/en/get-started/using-github/github-flow)
-[Ignoring files with .gitignore](https://docs.github.com/en/get-started/git-basics/ignoring-files)
51
51
-[Authentication to GitHub](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/about-authentication-to-github)
52
52
-[Mastering markdown](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax) (the text format you write in on PR, issue comments, and `.md` files).
Copy file name to clipboardExpand all lines: files/en-us/mdn/community/getting_started/index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ We also recommend reading the following learning material:
38
38
39
39
-[Basic etiquette for open source projects](/en-US/docs/MDN/Community/Open_source_etiquette): If you've never contributed to an open source project before, we encourage you to read this document.
40
40
-[Learn web development](/en-US/docs/Learn_web_development): If you are new to HTML, CSS, JavaScript, we have some great content to help you get started.
41
-
-[Deep dive into collaborating with pull requests](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests)
41
+
-[Deep dive into collaborating with pull requests](https://docs.github.com/en/pull-requests)
42
42
43
43
Some writing-specific contribution opportunities will require a reasonable understanding of the English language.
44
44
That said, don't worry if your grammar isn't perfect: we have a team of people who will review your writing and help improve it.
Copy file name to clipboardExpand all lines: files/en-us/mdn/community/pull_requests/index.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,7 @@ When you're ready to open a pull request, follow these guidelines:
77
77
If you don't know how to resolve the underlying issues, ask for help.
78
78
-**Resolve merge conflicts** with the main branch; you are responsible for resolving these.
79
79
You can do this by merging the `mdn/main` branch into your branch.
80
-
For more information, see the GitHub documentation on [keeping your branch up to date](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/keeping-your-pull-request-in-sync-with-the-base-branch#about-keeping-your-pull-request-in-sync).
80
+
For more information, see the GitHub documentation on [keeping your branch up to date](https://docs.github.com/en/pull-requests/proposing-changes-to-your-work-with-pull-requests/keeping-your-pull-request-in-sync-with-the-base-branch#about-keeping-your-pull-request-in-sync).
81
81
-**Be responsive to feedback.**
82
82
This means being prepared to make changes to the pull request based on the review.
83
83
If a review happens and the changes are not made, the pull request may be closed.
@@ -88,7 +88,7 @@ When you're ready to open a pull request, follow these guidelines:
88
88
89
89
## Pull request review process
90
90
91
-
Reviewer(s) are automatically assigned when you open a pull request based on a `CODEOWNERS` file, but if there is a specific person you want to request review from, you can [request a review](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/requesting-a-pull-request-review) manually.
91
+
Reviewer(s) are automatically assigned when you open a pull request based on a `CODEOWNERS` file, but if there is a specific person you want to request review from, you can [request a review](https://docs.github.com/en/pull-requests/proposing-changes-to-your-work-with-pull-requests/requesting-a-pull-request-review) manually.
92
92
We also use auto-labeling on pull requests to help us triage them.
93
93
Maintainers can further triage pull requests and add any additional labels, such as `needs-info` or `on-hold`, if needed based on context.
94
94
@@ -136,8 +136,8 @@ When you are reviewing a pull request, you should:
136
136
If you are not sure how to fix the failing tests, [ask for help](/en-US/docs/MDN/Community/Communication_channels) or assign the pull request to someone else.
137
137
138
138
If a pull request looks good apart from small typos or other minor issues, you may want to fix the problem directly.
139
-
You can do this provided the pull request [has been set up to allow changes](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/allowing-changes-to-a-pull-request-branch-created-from-a-fork).
140
-
It's recommended to use [comments with suggestions](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request) for fixing minor issues, as they can be batched and committed in one go.
139
+
You can do this provided the pull request [has been set up to allow changes](https://docs.github.com/en/pull-requests/working-with-forks/allowing-changes-to-a-pull-request-branch-created-from-a-fork).
140
+
It's recommended to use [comments with suggestions](https://docs.github.com/en/pull-requests/reviewing-changes-in-pull-requests/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request) for fixing minor issues, as they can be batched and committed in one go.
141
141
142
142
When submitting your review you have three options, **approve**, **comment**, or **request changes**.
143
143
The following sections explain when to use each option.
0 commit comments