Skip to content

Commit 48e7c72

Browse files
am-steadpeterbe
andauthored
[Improvement]: Get started (phase 1): Moving some articles out of Get started -> Quickstart #12380 (#47047)
Co-authored-by: Peter Bengtsson <mail@peterbe.com>
1 parent 3a034e6 commit 48e7c72

29 files changed

Lines changed: 48 additions & 42 deletions

File tree

.github/CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ Use the table of contents icon <img src="/contributing/images/table-of-contents.
1313
To get an overview of the project, read the [README](README.md) file. Here are some resources to help you get started with open source contributions:
1414

1515
- [Finding ways to contribute to open source on GitHub](https://docs.github.com/en/get-started/exploring-projects-on-github/finding-ways-to-contribute-to-open-source-on-github)
16-
- [Set up Git](https://docs.github.com/en/get-started/quickstart/set-up-git)
17-
- [GitHub flow](https://docs.github.com/en/get-started/quickstart/github-flow)
16+
- [Set up Git](https://docs.github.com/en/get-started/getting-started-with-git/set-up-git)
17+
- [GitHub flow](https://docs.github.com/en/get-started/using-github/github-flow)
1818
- [Collaborating with pull requests](https://docs.github.com/en/github/collaborating-with-pull-requests)
1919

2020

.github/workflows/sync-search-pr.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ name: Sync search - PR
66
# **Who does it impact**: Docs engineering
77

88
on:
9+
workflow_dispatch:
910
pull_request:
1011
paths:
1112
- 'src/search/**'

content/account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-settings-on-your-profile/why-are-my-contributions-not-showing-up-on-my-profile.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Date: Sun, 27 Apr 2014 15:36:39 +0530
6868
Subject: [PATCH] updated index for better welcome message
6969
```
7070

71-
The email address in the `From:` field is the address that was set in the [local git config settings](/get-started/quickstart/set-up-git). In this example, the email address used for the commit is `octocat@nowhere.com`.
71+
The email address in the `From:` field is the address that was set in the [local git config settings](/get-started/getting-started-with-git/set-up-git). In this example, the email address used for the commit is `octocat@nowhere.com`.
7272

7373
If the email address used for the commit is not connected to your account on {% data variables.location.product_location %}, {% ifversion ghae %}change the email address used to author commits in Git. For more information, see "[AUTOTITLE](/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-email-preferences/setting-your-commit-email-address#setting-your-commit-email-address-in-git)."{% else %}you must [add the email address](/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-email-preferences/adding-an-email-address-to-your-github-account) to your account on {% data variables.location.product_location %}. Your contributions graph will be rebuilt automatically when you add the new address.{% endif %}
7474

content/actions/creating-actions/releasing-and-maintaining-actions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ versions:
1313
ghes: '*'
1414
ghae: '*'
1515
---
16-
16+
1717
{% data reusables.actions.enterprise-github-hosted-runners %}
1818

1919
## Introduction
@@ -56,7 +56,7 @@ To support the developer process in the next section, add two {% data variables.
5656

5757
Here is an example process that you can follow to automatically run tests, create a release{% ifversion fpt or ghec%} and publish to {% data variables.product.prodname_marketplace %}{% endif %}, and publish your action.
5858

59-
1. Do feature work in branches per GitHub flow. For more information, see "[AUTOTITLE](/get-started/quickstart/github-flow)."
59+
1. Do feature work in branches per GitHub flow. For more information, see "[AUTOTITLE](/get-started/using-github/github-flow)."
6060
- Whenever a commit is pushed to the feature branch, your testing workflow will automatically run the tests.
6161

6262
1. Create pull requests to the `main` branch to initiate discussion and review, merging when ready.

content/contributing/writing-for-github-docs/using-markdown-and-liquid-in-github-docs.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -399,17 +399,17 @@ Because the site is dynamic, it does not build HTML files for each different ver
399399

400400
For example, an article that is available in currently supported versions will have permalink URLs like the following:
401401

402-
- `/en/get-started/quickstart/set-up-git`
403-
- `/en/enterprise-cloud@latest/get-started/quickstart/set-up-git`
404-
- `/en/enterprise-server@3.10/get-started/quickstart/set-up-git`
405-
- `/en/enterprise-server@3.9/get-started/quickstart/set-up-git`
406-
- `/en/enterprise-server@3.8/get-started/quickstart/set-up-git`
407-
- `/en/enterprise-server@3.7/get-started/quickstart/set-up-git`
408-
- `/en/enterprise-server@3.6/get-started/quickstart/set-up-git`
402+
- `/en/get-started/getting-started-with-git/set-up-git`
403+
- `/en/enterprise-cloud@latest/get-started/getting-started-with-git/set-up-git`
404+
- `/en/enterprise-server@3.10/get-started/getting-started-with-git/set-up-git`
405+
- `/en/enterprise-server@3.9/get-started/getting-started-with-git/set-up-git`
406+
- `/en/enterprise-server@3.8/get-started/getting-started-with-git/set-up-git`
407+
- `/en/enterprise-server@3.7/get-started/getting-started-with-git/set-up-git`
408+
- `/en/enterprise-server@3.6/get-started/getting-started-with-git/set-up-git`
409409

410410
An article that is not available in {% data variables.product.prodname_ghe_server %} will have just one permalink:
411411

412-
- `/en/get-started/quickstart/set-up-git`
412+
- `/en/get-started/getting-started-with-git/set-up-git`
413413

414414
{% note %}
415415

content/get-started/exploring-projects-on-github/contributing-to-a-project.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ gh repo fork REPOSITORY --clone=true
104104

105105
## Creating a branch to work on
106106

107-
Before making changes to the project, you should create a new branch and check it out. By keeping changes in their own branch, you follow GitHub Flow and ensure that it will be easier to contribute to the same project again in the future. For more information, see "[AUTOTITLE](/get-started/quickstart/github-flow#following-github-flow)."
107+
Before making changes to the project, you should create a new branch and check it out. By keeping changes in their own branch, you follow GitHub Flow and ensure that it will be easier to contribute to the same project again in the future. For more information, see "[AUTOTITLE](/get-started/using-github/github-flow#following-github-flow)."
108108

109109
{% webui %}
110110

content/get-started/quickstart/git-cheatsheet.md renamed to content/get-started/getting-started-with-git/git-cheatsheet.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ redirect_from:
44
- /articles/git-cheatsheet
55
- /github/getting-started-with-github/git-cheatsheet
66
- /github/getting-started-with-github/quickstart/git-cheatsheet
7+
- /get-started/quickstart/git-cheatsheet
78
versions:
89
fpt: '*'
910
ghes: '*'

content/get-started/getting-started-with-git/git-workflows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ versions:
1313
ghae: '*'
1414
ghec: '*'
1515
---
16-
You can adopt the {% data variables.product.prodname_dotcom %} flow method to standardize how your team functions and collaborates on {% data variables.product.prodname_dotcom %}. For more information, see "[AUTOTITLE](/get-started/quickstart/github-flow)."
16+
You can adopt the {% data variables.product.prodname_dotcom %} flow method to standardize how your team functions and collaborates on {% data variables.product.prodname_dotcom %}. For more information, see "[AUTOTITLE](/get-started/using-github/github-flow)."

content/get-started/getting-started-with-git/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ versions:
1313
ghae: '*'
1414
ghec: '*'
1515
children:
16+
- /set-up-git
1617
- /setting-your-username-in-git
1718
- /caching-your-github-credentials-in-git
1819
- /why-is-git-always-asking-for-my-password
@@ -23,5 +24,5 @@ children:
2324
- /associating-text-editors-with-git
2425
- /configuring-git-to-handle-line-endings
2526
- /ignoring-files
27+
- /git-cheatsheet
2628
---
27-

content/get-started/quickstart/set-up-git.md renamed to content/get-started/getting-started-with-git/set-up-git.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ redirect_from:
1212
- /articles/set-up-git
1313
- /github/getting-started-with-github/set-up-git
1414
- /github/getting-started-with-github/quickstart/set-up-git
15+
- /get-started/quickstart/set-up-git
1516
intro: 'At the heart of {% data variables.product.prodname_dotcom %} is an open-source version control system (VCS) called Git. Git is responsible for everything {% data variables.product.prodname_dotcom %}-related that happens locally on your computer.'
1617
versions:
1718
fpt: '*'

0 commit comments

Comments
 (0)