Skip to content

Commit 0b8665a

Browse files
Update to 1 in STEP and README.md
1 parent a977030 commit 0b8665a

File tree

2 files changed

+35
-34
lines changed

2 files changed

+35
-34
lines changed

.github/steps/-step.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0
1+
1

README.md

+34-33
Original file line numberDiff line numberDiff line change
@@ -14,49 +14,50 @@ _Get started using GitHub in less than an hour._
1414
</header>
1515

1616
<!--
17-
<<< Author notes: Course start >>>
18-
Include start button, a note about Actions minutes,
19-
and tell the learner why they should take the course.
17+
<<< Author notes: Step 1 >>>
18+
Choose 3-5 steps for your course.
19+
The first step is always the hardest, so pick something easy!
20+
Link to docs.github.com for further explanations.
21+
Encourage users to open new tabs for steps!
2022
-->
2123

22-
## Welcome
24+
## Step 1: Create a branch
2325

24-
People use GitHub to build some of the most advanced technologies in the world. Whether you’re visualizing data or building a new game, there’s a whole community and set of tools on GitHub that can help you do it even better. GitHub Skills’ “Introduction to GitHub” course guides you through everything you need to start contributing in less than an hour.
26+
_Welcome to "Introduction to GitHub"! :wave:_
2527

26-
- **Who is this for**: New developers, new GitHub users, and students.
27-
- **What you'll learn**: We'll introduce repositories, branches, commits, and pull requests.
28-
- **What you'll build**: We'll make a short Markdown file you can use as your [profile README](https://docs.github.com/account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/managing-your-profile-readme).
29-
- **Prerequisites**: None. This course is a great introduction for your first day on GitHub.
30-
- **How long**: This course takes less than one hour to complete.
28+
**What is GitHub?**: GitHub is a collaboration platform that uses _[Git](https://docs.github.com/get-started/quickstart/github-glossary#git)_ for versioning. GitHub is a popular place to share and contribute to [open-source](https://docs.github.com/get-started/quickstart/github-glossary#open-source) software.
29+
<br>:tv: [Video: What is GitHub?](https://www.youtube.com/watch?v=pBy1zgt0XPc)
3130

32-
In this course, you will:
31+
**What is a repository?**: A _[repository](https://docs.github.com/get-started/quickstart/github-glossary#repository)_ is a project containing files and folders. A repository tracks versions of files and folders. For more information, see "[About repositories](https://docs.github.com/en/repositories/creating-and-managing-repositories/about-repositories)" from GitHub Docs.
3332

34-
1. Create a branch
35-
2. Commit a file
36-
3. Open a pull request
37-
4. Merge your pull request
33+
**What is a branch?**: A _[branch](https://docs.github.com/en/get-started/quickstart/github-glossary#branch)_ is a parallel version of your repository. By default, your repository has one branch named `main` and it is considered to be the definitive branch. Creating additional branches allows you to copy the `main` branch of your repository and safely make any changes without disrupting the main project. Many people use branches to work on specific features without affecting any other parts of the project.
3834

39-
### How to start this course
35+
Branches allow you to separate your work from the `main` branch. In other words, everyone's work is safe while you contribute. For more information, see "[About branches](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-branches)".
4036

41-
<!-- For start course, run in JavaScript:
42-
'https://github.com/new?' + new URLSearchParams({
43-
template_owner: 'skills',
44-
template_name: 'introduction-to-github',
45-
owner: '@me',
46-
name: 'skills-introduction-to-github',
47-
description: 'My clone repository',
48-
visibility: 'public',
49-
}).toString()
50-
-->
37+
**What is a profile README?**: A _[profile README](https://docs.github.com/account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/managing-your-profile-readme)_ is essentially an "About me" section on your GitHub profile where you can share information about yourself with the community on GitHub.com. GitHub shows your profile README at the top of your profile page. For more information, see "[Managing your profile README](https://docs.github.com/en/account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/managing-your-profile-readme)".
38+
39+
![profile-readme-example](/images/profile-readme-example.png)
40+
41+
### :keyboard: Activity: Your first branch
42+
43+
1. Open a new browser tab and navigate to your newly made repository. Then, work on the steps in your second tab while you read the instructions in this tab.
44+
2. Navigate to the **< > Code** tab in the header menu of your repository.
45+
46+
![code-tab](/images/code-tab.png)
47+
48+
3. Click on the **main** branch drop-down.
49+
50+
![main-branch-dropdown](/images/main-branch-dropdown.png)
51+
52+
4. In the field, name your branch `my-first-branch`. In this case, the name must be `my-first-branch` to trigger the course workflow.
53+
5. Click **Create branch: my-first-branch** to create your branch.
54+
55+
![create-branch-button](/images/create-branch-button.png)
5156

52-
[![start-course](https://user-images.githubusercontent.com/1221423/235727646-4a590299-ffe5-480d-8cd5-8194ea184546.svg)](https://github.com/new?template_owner=skills&template_name=introduction-to-github&owner=%40me&name=skills-introduction-to-github&description=My+clone+repository&visibility=public)
57+
The branch will automatically switch to the one you have just created.
58+
The **main** branch drop-down bar will reflect your new branch and display the new branch name.
5359

54-
1. Right-click **Start course** and open the link in a new tab.
55-
2. In the new tab, most of the prompts will automatically fill in for you.
56-
- For owner, choose your personal account or an organization to host the repository.
57-
- We recommend creating a public repository, as private repositories will [use Actions minutes](https://docs.github.com/en/billing/managing-billing-for-github-actions/about-billing-for-github-actions).
58-
- Scroll down and click the **Create repository** button at the bottom of the form.
59-
3. After your new repository is created, wait about 20 seconds, then refresh the page. Follow the step-by-step instructions in the new repository's README.
60+
6. Wait about 20 seconds then refresh this page (the one you're following instructions from). [GitHub Actions](https://docs.github.com/en/actions) will automatically update to the next step.
6061

6162
<footer>
6263

0 commit comments

Comments
 (0)