Skip to content

Commit e04962d

Browse files
authored
Merge pull request #51077 from v-thpra/azure-triage-fix-1058588
Technical Review 1058588: Upload your project by using GitHub best practices
2 parents b77b113 + 56bc9f6 commit e04962d

9 files changed

+13
-13
lines changed

learn-pr/github/upload-project-github/1-introduction.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Introduction
44
metadata:
55
title: Introduction
66
description: Learn to upload your existing project to GitHub.
7-
ms.date: 11/30/2023
7+
ms.date: 06/23/2025
88
author: a-a-ron
99
ms.author: aastewar
1010
ms.topic: unit

learn-pr/github/upload-project-github/2-how-to-upload-to-github.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: How do I prepare and upload an existing project to GitHub?
44
metadata:
55
title: How do I prepare and upload an existing project to GitHub?
66
description: Learn to upload your existing project to GitHub.
7-
ms.date: 11/30/2023
7+
ms.date: 06/23/2025
88
author: a-a-ron
99
ms.author: aastewar
1010
ms.topic: unit

learn-pr/github/upload-project-github/3-upload-your-repository-to-github.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Exercise - Upload your project to GitHub
44
metadata:
55
title: Exercise - Upload your project to GitHub
66
description: Prepare and execute a successful upload to GitHub.
7-
ms.date: 11/30/2023
7+
ms.date: 06/23/2025
88
author: a-a-ron
99
ms.author: aastewar
1010
ms.topic: unit

learn-pr/github/upload-project-github/4-knowledge-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Module assessment
44
metadata:
55
title: Module assessment
66
description: Test your knowledge about uploading projects to GitHub.
7-
ms.date: 11/30/2023
7+
ms.date: 06/23/2025
88
author: a-a-ron
99
ms.author: aastewar
1010
ms.topic: unit

learn-pr/github/upload-project-github/5-summary.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ uid: learn.github.upload-project-github.5-summary
33
title: Summary
44
metadata:
55
title: Summary
6-
description: Review what you've learned.
7-
ms.date: 11/30/2023
6+
description: Review what you learned about uploading your existing project to GitHub.
7+
ms.date: 06/23/2025
88
author: a-a-ron
99
ms.author: aastewar
1010
ms.topic: unit

learn-pr/github/upload-project-github/includes/2-how-to-upload-to-github.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ GitHub exclusively uses **Git**, arguably the best version-control system around
1313
A large amount of project code is still stored exclusively on developer machines. When you upload to GitHub, you're moving your code to GitHub's cloud platform, where team members can easily access it from anywhere. This change offers a good opportunity to review your team's policy for the kinds of files and data you keep in version control. As a best practice, you should assume that anything you commit to GitHub is potentially compromised. So, be sure not to include sensitive data, such as API keys, passwords, or other files containing comparable information.
1414

1515
> [!NOTE]
16-
> GitHub offers both public and private repositories, as well as granular access controls for different parts of a repository. This lets you control to whom your projects are visible, as well as what actions a given user can perform.
16+
> GitHub offers both public and private repositories, and granular access controls for different parts of a repository. This granularity lets you control who your projects are visible to, and what actions a given user can perform.
1717
1818
### Collaboration
1919

learn-pr/github/upload-project-github/includes/3-upload-your-repository-to-github.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ If you have a project hosted on another version control system, you can automati
2424

2525
If you'd like to match the commits in your repository to the authors' GitHub user accounts during the import. First, make sure that every contributor to your repository has a GitHub account before you begin the import.
2626

27-
Repositories and individual files are subject to size limits. For more information, check out [About large files on GitHub](https://docs.github.com/repositories/working-with-files/managing-large-files/about-large-files-on-github).
27+
Repositories and individual files are subject to size limits. For more information, see [About large files on GitHub](https://docs.github.com/repositories/working-with-files/managing-large-files/about-large-files-on-github).
2828

29-
Follow these steps to import a repository:
29+
To import a repository, follow these steps:
3030

3131
1. In the upper-right corner of any page, select **+**, and then select **Import repository**.
3232

@@ -58,7 +58,7 @@ Follow these steps to import a repository:
5858

5959
8. If your project contains files larger than 100 MB, choose whether to import the large files using [Git Large File Storage](https://docs.github.com/repositories/working-with-files/managing-large-files), then select **Continue**.
6060

61-
:::image type="content" source="../media/8-select-git-lfs-importer.png" alt-text="Screenshot of files suitable for Git LFS importer.":::
61+
:::image type="content" source="../media/8-select-git-lfs-importer.png" alt-text="Screenshot of files suitable for Git Large File Storage importer.":::
6262

6363
When the repository is fully imported, you receive an email.
6464

@@ -116,7 +116,7 @@ Follow these steps to import your external repository:
116116

117117
1. [Create a new repository on GitHub.](https://docs.github.com/repositories/creating-and-managing-repositories/creating-a-new-repository) You import your external Git repository to this new repository.
118118

119-
1. On the command line, make a "bare" clone of the repository using the external clone URL. This command creates a full copy of the data, but without a working directory for editing files, and ensures a clean, fresh export of all the old data.
119+
1. Make a "bare" clone of the repository using the external clone URL. On the command line, enter the following command. This command creates a full copy of the data, but without a working directory for editing files, and ensures a clean, fresh export of all the old data.
120120

121121
```bash
122122
$ git clone --bare https://external-host.com/ext-user/repo.git

learn-pr/github/upload-project-github/includes/5-summary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ Now that you have your project on GitHub, learn to [Manage an InnerSource progra
1414
Here are some links to more information on the subjects we discussed in this module:
1515

1616
- [Ignoring files with .gitignore](https://help.github.com/en/github/using-git/ignoring-files?azure-portal=true)
17-
- [.gitignore repository for popular platforms](https://github.com/github/gitignore?azure-portal=true)
17+
- Reference the [.gitignore repository for popular platforms](https://github.com/github/gitignore?azure-portal=true)
1818
- [Setting repository visibility](https://docs.github.com/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility)

learn-pr/github/upload-project-github/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ uid: learn.github.upload-project-github
33
metadata:
44
title: "Upload your project by using GitHub best practices"
55
description: Learn to upload your existing project to GitHub.
6-
ms.date: 11/30/2023
6+
ms.date: 06/23/2025
77
author: a-a-ron
88
ms.author: aastewar
99
ms.topic: module

0 commit comments

Comments
 (0)