Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

📘 CHAPTER-1 📘 Github Training: Introduction to Github 101 🚀

License

NotificationsYou must be signed in to change notification settings

CodeMacrocosm/Github-Training

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

🌟🌟🌟🌟

GitHub stars

GitHub forks

🌟🌟🌟🌟

Table of Contents

  1. Introduction
  2. What will you Learn?
  3. What is GitHub?
  4. No Coding Necessary
  5. How to start?
  6. Why this Training
  7. License
  8. Star this Repo
  9. Celebrate!

Introduction

  • TheHello World project Training is hosted byShreya Malogi , is a time-honored tradition in computer programming. It is a simple exercise that gets you started when learning something new. Let’s get started with GitHub! 🌐

  • By the end of this training, you will be able to make your own Codecosmers rep0,

  • P.S : CodeCosmers are the Stakeholders in Codemacrocosm

  • Enjoy your journey into GitHub! 🚀✨

You’ll learn how to

  • Create and use a repository 📁
  • Start and manage a new branch 🌿
  • Make changes to a file and push them to GitHub as commits 💻
  • Open and merge a pull request 🔄

What is GitHub? 🤔

GitHub is a code hosting platform for version control and collaboration. It lets you and others work together on projects from anywhere. 🌍

This tutorial teaches you GitHub essentials likerepositories,branches,commits, andPull Requests. You’ll create your own Hello CodeCosmers repository and learn GitHub’s Pull Request workflow, a popular way to create and review code. 📝

No coding necessary 🚫

To complete this tutorial, you need aGitHub.com account and Internet access. You don’t need to know how to code, use the command line, or install Git (the version control software GitHub is built on). 🌐

Tip: Open this guide in a separate browser window (or tab) so you can see it while you complete the steps in the tutorial. 🌟

How to start? 📝

Click here

Step 1. Create a Repository 🚀

Arepository is usually used to organize a single project. Repositories can contain folders and files, images, videos, spreadsheets, and data sets – anything your project needs. We recommend including aREADME, or a file with information about your project. GitHub makes it easy to add one at the same time you create your new repository. 📁

Yourhello-CodeCosmers repository can be a place where you store ideas, resources, or even share and discuss things with others. 🤝

  • To create a new repository 🌟
  1. In the upper right corner, next to your avatar or identicon, clickand then selectNew repository. 📅
  2. Name your repositoryhello-CodeCosmers. 🌐
  3. Write a short description. 📝
  4. SelectInitialize this repository with a README. 📂

new-repo-form 🚀

ClickCreate repository. 🚀


Step 2. Create a Branch 🌿

Branching is the way to work on different versions of a repository at one time. 🔄

  • By default, your repository has one branch namedmaster which is considered to be the definitive branch. We use branches to experiment and make edits before committing them tomaster. 🎨

  • When you create a branch off themaster branch, you’re making a copy, or snapshot, ofmaster as it was at that point in time. If someone else made changes to themaster branch while you were working on your branch, you could pull in those updates. 🔄

  • This diagram shows:

  • Themaster branch 🌟

  • A new branch calledfeature (because we’re doing ‘feature work’ on this branch) 🌟

  • The journey thatfeature takes before it’s merged intomaster 🌟

a branch 🌿

Have you ever saved different versions of a file? Something like:

  • story.txt 📖
  • story-shreya-edit.txt ✏️
  • story-shreya-edit-reviewed.txt 📝

Branches accomplish similar goals in GitHub repositories. 🌟

  • Here at GitHub, our developers, writers, and designers use branches for keeping bug fixes and feature work separate from ourmaster (production) branch. When a change is ready, they merge their branch intomaster. 🤝

  • To create a new branch 🌿

  1. Go to your new repositoryhello-CodeCosmers. 🚀
  2. Click the drop down at the top of the file list that saysbranch: master. 🌿
  3. Type a branch name,readme-edits, into the new branch text box. 📝
  4. Select the blueCreate branch box or hit “Enter” on your keyboard. 🚀

branch gif 🌟

  • Now you have two branches,master andreadme-edits. They look exactly the same, but not for long! Next, we’ll add our changes to the new branch. 🌟

Step 3. Make and commit changes 📝

  • Bravo! Now, you’re on the code view for yourreadme-edits branch, which is a copy ofmaster. Let’s make some edits. 💻

  • On GitHub, saved changes are calledcommits. Each commit has an associatedcommit message, which is a description explaining why a particular change was made. Commit messages capture the history of your changes, so other contributors can understand what you’ve done and why. 📜

  • Make and commit changes 📝

    1. Click theREADME.md file. 📖
    1. Click thepencil icon in the upper right corner of the file view to edit. ✏️
    1. In the editor, write a bit about yourself. 🤖
    1. Write a commit message that describes your changes. 📝
    1. ClickCommit changes button. 🚀

commit 🌟

  • These changes will be made to just the README file on yourreadme-edits branch, so now this branch contains content that’s different frommaster. 🌟

Step 4. Open a Pull Request 🔄

  • Nice edits! Now that you have changes in a branch off ofmaster, you can open apull request. 🌟

  • Pull Requests are the heart of collaboration on GitHub. When you open apull request, you’re proposing your changes and requesting that someone review and pull in your contribution and merge them into their branch. Pull requests showdiffs, or differences, of the content from both branches. The changes, additions, and subtractions are shown in green and red. 🌟

  • As soon as you make a commit, you can open a pull request and start a discussion, even before the code is finished. 🌟

  • By using GitHub’s@mention system in your pull request message, you can ask for feedback from specific people or teams, whether they’re down the hall or 10 time zones away. 🌟

You can even open pull requests in your own repository and merge them yourself. It’s a great way to learn the GitHub Flow before working on larger projects. 🌟

  • Open a Pull Request for changes to the README 📜

Click on the image for a larger version 🌟

StepScreenshot
Click thePull Request tab, then from the Pull Request page, click the greenNew pull request button.pr-tab
In theExample Comparisons box, select the branch you made,readme-edits, to compare withmaster (the original).branch
Look over your changes in the diffs on the Compare page, make sure they’re what you want to submit.diff
When you’re satisfied that these are the changes you want to submit, click the big greenCreate Pull Request button.create-pull
Give your pull request a title and write a brief description of your changes.pr-form
  • When you’re done with your message, clickCreate pull request! 🌟

Tip: You can useemoji anddrag and drop images and gifs onto comments and Pull Requests. 🌟


Step 5. Merge your Pull Request 🚀

  • In this final step, it’s time to bring your changes together – merging yourreadme-edits branch into themaster branch. 🌟
  1. Click the greenMerge pull request button to merge the changes intomaster. 🔄
  2. ClickConfirm merge. 🌟
  3. Go ahead and delete the branch, since its changes have been incorporated, with theDelete branch button in the purple box. ❌

merge 🌟

🎯 Why This Training?

Whether you're a coding novice or an experienced developer looking to enhance your GitHub skills, this hands-on experience is tailored to ensure effective learning. This training provides a comprehensive understanding of GitHub's fundamental concepts and workflows. From creating repositories to making pull requests, you'll gain practical insights that are valuable for both beginners and seasoned developers. Join us on this coding adventure and elevate your collaboration game! 🚀💻🌐📘🌟

📜 License

This repository is open-source and distributed under the MIT License.

MIT License

Copyright (c) 2020 CodeMacrocosm

🌟 Star This Repository

If you find this training program helpful and valuable, don't forget to star this repository to show your support!

Celebrate! 🎉

By completing this training, you’ve learned to create a project and make a pull request on GitHub! 🌟

Here’s what you accomplished in this tutorial:

  • Created an open-source repository 📁
  • Started and managed a new branch 🌿
  • Changed a file and committed those changes to GitHub 💻
  • Opened and merged a Pull Request 🔄

Take a look at your GitHub profile, and you’ll see your newcontribution squares! 🌟

To learn more about the power of Pull Requests, we recommend reading theGitHub Flow Guide. You might also visitGitHub Explore and get involved in an Open Source project

🚀 Let's Get Started!

We hope you find these resources engaging and beneficial. If you have any questions or suggestions, feel free to reach out.

Happy Learning! 🌟

About

📘 CHAPTER-1 📘 Github Training: Introduction to Github 101 🚀

Topics

Resources

License

Stars

Watchers

Forks


[8]ページ先頭

©2009-2025 Movatter.jp