diff --git a/courses/github/create-a-github-account.md b/courses/github/create-a-github-account.md index ac4d1a07e..3ff7135c8 100644 --- a/courses/github/create-a-github-account.md +++ b/courses/github/create-a-github-account.md @@ -22,7 +22,7 @@ To get started with GitHub, you need to create a GitHub account. If you already 2. Enter your email address, choose a username, and create a password. - + ![Create Account](img-2.png) @@ -31,13 +31,13 @@ To get started with GitHub, you need to create a GitHub account. If you already You will receive an email from GitHub with a link to verify your email address. Click on the link to verify your email address. - + ![Verify Email](img-3.png) 5. Congratulations! You now have a GitHub account. - + ![GitHub account](img-4.png) diff --git a/courses/github/create-a-new-repository.md b/courses/github/create-a-new-repository.md index e69de29bb..0ab695319 100644 --- a/courses/github/create-a-new-repository.md +++ b/courses/github/create-a-new-repository.md @@ -0,0 +1,65 @@ +--- +id: create-a-new-repository +title: Create a New Repository +sidebar_label: Create a New Repository +sidebar_position: 3 +description: Learn how to create a new repository on GitHub in a few simple steps. Start a new project, share your code with others, and collaborate with your team using GitHub repositories. +tags: [github, git, version control, collaboration, beginners] +keywords: [github, git, version control, collaboration, beginners, open source, repository, create, new, project] +--- + +**To get started with GitHub, you need to create a new repository. If you already have a repository, you can skip this step.** + +## Create a New Repository + +To create a new repository on GitHub, follow these steps: + +1. Go to [GitHub](http://github.com/) and log in to your account. + + + ![GitHub Login](img-1.png) + + +2. Click on the "+" icon in the top right corner of the page and select "New repository" from the dropdown menu. + + + ![New Repository](img-5.png) + + +3. Enter a name for your repository in the "Repository name" field. (For example, "hello-world") + + + ![Repository Name](img-6.png) + + +4. Optionally, you can add a description for your repository in the "Description" field. + + + ![Repository Description](img-7.png) + + +5. Choose the visibility of your repository. You can make it public or private. + + + ![Repository Visibility](img-8.png) + + +6. Select the "Initialize this repository with a README" checkbox if you want to create a README file for your repository. + + + ![Initialize Repository](img-9.png) + + +7. Click on the "Create repository" button to create your new repository. + + + ![Create Repository](img-10.png) + + +8. Your new repository is now created. You can start adding files, folders, and code to your repository. + + + ![Repository Created](img-11.png) + + +Congratulations! You have successfully created a new repository on GitHub. You can now start working on your project, share your code with others, and collaborate with your team using GitHub repositories. \ No newline at end of file diff --git a/courses/github/img-10.png b/courses/github/img-10.png new file mode 100644 index 000000000..3dc5bd67a Binary files /dev/null and b/courses/github/img-10.png differ diff --git a/courses/github/img-11.png b/courses/github/img-11.png new file mode 100644 index 000000000..bbc2f23cc Binary files /dev/null and b/courses/github/img-11.png differ diff --git a/courses/github/img-5.png b/courses/github/img-5.png new file mode 100644 index 000000000..bbb65a44c Binary files /dev/null and b/courses/github/img-5.png differ diff --git a/courses/github/img-6.png b/courses/github/img-6.png new file mode 100644 index 000000000..8862d5156 Binary files /dev/null and b/courses/github/img-6.png differ diff --git a/courses/github/img-7.png b/courses/github/img-7.png new file mode 100644 index 000000000..a521e47f7 Binary files /dev/null and b/courses/github/img-7.png differ diff --git a/courses/github/img-8.png b/courses/github/img-8.png new file mode 100644 index 000000000..cf6df84c7 Binary files /dev/null and b/courses/github/img-8.png differ diff --git a/courses/github/img-9.png b/courses/github/img-9.png new file mode 100644 index 000000000..8b7e255d9 Binary files /dev/null and b/courses/github/img-9.png differ