Skip to content

Latest commit

 

History

History
47 lines (35 loc) · 1.55 KB

README.md

File metadata and controls

47 lines (35 loc) · 1.55 KB

🌱 The Github Quick Tutorial 🌱

If you want to be part of the premium github club (PGC), you should go through the following challenges and prove your mastery of Git/Github to the team.

  1. What's your nickname? … Seriously? Among all the possibilities you chose that?

Anyway, let's start.

Working On Your Local Repo

Let's warmup quickly before the real deal.

  1. Create a new empty repo on Github.com following the lab's naming rules
  2. Clone it on your computer
  3. In the project folder, create a new file, such as « made.it »
  4. Stage it, and commit it with proper message convention
  5. From the HEAD, create a branch, using our naming convention.
  6. Checkout on the new branch
  7. Create a new file, such as «may.be»
  8. Stage and commit properly
  9. Type git log
  10. Checkout on master and type git log
  11. Push the «master» branch on Github
  12. From master, push the other branch
  13. Go see your pushes on Github

Now it's time to merge your branch through Github!!

Merging On Github

  1. Find the compare and pull request button (either on the first page or in the branch tab)
  2. Click on the button to start merging
  3. Explore the option, try to add or change things
  4. Add comments, title, etc.
  5. Merge your branch and delete it
  6. Now take some time to see what you have done. How things appear in Github and so on.

You're done!! Congrats 🎉!!

To go further please have fun on the amazing https://learngitbranching.js.org/?demo!