From Code to Performance

Hello World on Github

The Hello World tutorial teaches the workflow you'll use daily: repositories, branches, commits, and pull requests.

Concepts Introduced

Hands-On: Hello World Tutorials

  1. Create a Repository
    • Click + "New Repository" on your GitHub dashboard.
    • Name it hello-world
    • Add a README.md file (this serves as your project;s description).
    1. Create a Branch"
      • By default, your repo has one branch: main.
      • Create a branch called readme-edits.
      • This allows you to test changes without affecting main..
    1. Make Changes and Commit Changes
      • Edit the README.md by adding a line like: Hello, World! This is my first commit.
      • Save and commit your changes with a message: "Added introduction to README".
    1. Open a Pull Request (PR)
      • Go to the "Pull requests" tab in your repository.
      • Click "New pull request".
      • Select your readme-edits branch as the compare branch.
      • Click "Create pull request".
    1. Review and Merge the Pull Request
      • Once satifsied, click Merge Pull Request
      • You can now delete the branch readme-edits since its changes are in main.

    Congratulations! You've completed the Hello World tutorial and experienced the core GitHub workflow.