The Hello World project 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!

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 like repositories, branches, commits, and Pull Requests. You’ll create your own Hello World 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 a GitHub.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.

Step 1. Create a Repository

A repository 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 a README, or a file with information about your project. GitHub makes it easy to add one at the same time you create your new repository. It also offers other common options such as a license file.

Your hello-world 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, click  and then select New repository.
  2. Name your repository hello-world.
  3. Write a short description.
  4. Select Initialize this repository with a README.

Click Create 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 named master which is considered to be the definitive branch. We use branches to experiment and make edits before committing them to master.

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

This diagram shows:

  • The master branch
  • A new branch called feature (because we’re doing ‘feature work’ on this branch)
  • The journey that feature takes before it’s merged into master

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

  • story.txt
  • story-joe-edit.txt
  • story-joe-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 our master (production) branch. When a change is ready, they merge their branch into master.

To create a new branch

  1. Go to your new repository hello-world.
  2. Click the drop down at the top of the file list that says branch: master.
  3. Type a branch name, readme-edits, into the new branch text box.
  4. Select the blue Create branch box or hit “Enter” on your keyboard.

Now you have two branches, master and readme-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 your readme-edits branch, which is a copy of master. Let’s make some edits.

On GitHub, saved changes are called commits. 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 the README.md file.
  2. Click the  pencil icon in the upper right corner of the file view to edit.
  3. In the editor, write a bit about yourself.
  4. Write a commit message that describes your changes.
  5. Click Commit changes button.

These changes will be made to just the README file on your readme-editsbranch, so now this branch contains content that’s different from master.

Step 4. Open a Pull Request

Nice edits! Now that you have changes in a branch off of master, you can open a pull request.

Pull Requests are the heart of collaboration on GitHub. When you open a pull 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

Step Screenshot
Click the  Pull Requesttab, then from the Pull Request page, click the greenNew pull request button.
Select the branch you made,readme-edits, to compare with master (the original).
Look over your changes in the diffs on the Compare page, make sure they’re what you want to submit.
When you’re satisfied that these are the changes you want to submit, click the big green Create Pull Requestbutton.
Give your pull request a title and write a brief description of your changes.

When you’re done with your message, click Create pull request!


Tip: You can use emoji and drag 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 the master branch.

  1. Click the green Merge pull request button to merge the changes intomaster.
  2. Click Confirm merge.
  3. Go ahead and delete the branch, since its changes have been incorporated, with the Delete branch button in the purple box.

Celebrate!

By completing this tutorial, 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 new contribution squares!

If you want to learn more about the power of Pull Requests, we recommend reading the GitHub Flow Guide. You might also visit GitHub Explore and get involved in an Open Source project 


Tip: Check out our other Guides and YouTube Channel for more GitHub how-tos.

GitHub user guide:Hello world相关推荐

  1. 关于Github(1)

    什么是Github GitHub是用于版本控制和协作的代码托管平台. 它使你和其他人可以在任何地方共同处理项目. 本教程将教您GitHub基本知识,例如存储库,分支,提交和请求. 您将创建自己的Hel ...

  2. GitHub使用入门讲解--官方文档翻译让你最真实了解

    原文链接:点击打开链接 阅读官方文档一方面是最权威的讲解,另一方面又能提高你的英语阅读能力,同时让你有一个进步的满足感,英语基础不好的同学可以结合翻译阅读学习,或者直接观看翻译(下方为翻译) The ...

  3. react 开源项目_2020年2月Github上最热门的JavaScript开源项目

    来自:开源最前线(ID:OpenSourceTop)  2月份GitHub上最热门的JavaScript开源项目排行已经出炉啦,一起来看看上榜详情: 1joplin https://github.co ...

  4. GitHub 使用教程 -- (1)开始使用GitHub(GitHub Guides)

    前言: GitHub被誉为最大的程序员'同性交友'社区,你可以在GitHub上找到几乎所有你所需要的source code.现在就让我们一起开始了解如何开始使用GitHub吧. 文章结构: ​|--- ...

  5. GitHub官方介绍(中文翻译)

    注:本人亲自翻译,转载请注明出处. 官方链接地址 http://guides.github.com/activities/hello-world/ Hello World 项目在计算机编程界是一项历史 ...

  6. Web应用接入Github登录

    现在很多站点都支持第三方登录功能. 作为一个技术博客,目标受众项是一批程序员,第三方登录的就选中了github. 这篇文章注意是讲一讲如何给自己的博客添加github自动登录功能. OAuth 2.0 ...

  7. # | GitHub高效开源神器

    推荐 10 个你没见过的 GitHub 的高效开源神器,让你开发事半功倍! 1. octotree octotree 是一款 chrome 插件,用于将 Github 项目代码以树形格式展示,而且在展 ...

  8. GitHub使用说明(翻译原网站)

    GitHub官网:https://github.com/ 使用目的: 您将学习如何: 创建和使用存储库 启动和管理新分支 更改文件并将其作为提交推送到GitHub 打开并合并拉取请求 什么是GitHu ...

  9. 玩转 GitHub 篇,推荐 10 个你没见过的 GitHub 的高效开源神器,YYDS!

    大家好,我是你们的 猫哥,那个不喜欢吃鱼.又不喜欢喵 的超级猫 ~ 好久不见,最近忙成狗,天天都在加班,挺久没上线了,唉. 平时如何发现好的开源项目,可以看看这篇文章:GitHub 上能挖矿的神仙技巧 ...

最新文章

  1. flex布局实现叠在另一个div之上_如何让一个div在另一个div的上面,求高手指点...
  2. 转:国外科技论文写作资源
  3. c++状态模式state
  4. 算法笔记_044:表达式计算求值(Java)
  5. mysql 存储过程 脚本_mysql利用存储过程插入大量数据脚本
  6. WordPress 插件开发实例 – 详细注释的 Widget 开发例子
  7. python如何实现分布式_Python如何快速实现分布式任务
  8. chap8_1 Render to texture in OGRE
  9. Atitit 事务的一些概念 目录 1. 事务的另一个特性:数据隔离级别 1 2. Spring五个事务隔离级别和七个事务传播行为 1 3. 在TransactionDefinition接口中定义了
  10. 《穿越计算机的迷雾》读书笔记九
  11. js 判断数组的4种方法
  12. C语言 使用DFT得到信号幅度谱
  13. 微软面向大众市场发布Office 2010
  14. Sources for ‘Android API 32 Platform’ not found
  15. python if else写在一行_关于python:将if-elif-else语句放在一行上?
  16. 统计源期刊《国际医学放射学杂志》
  17. 计算机英语重点,计算机英语复习重点.doc
  18. C# (江湖熟手)- Cefsharp 的使用(几行代码写个浏览器)
  19. QQ魔法表情实现原理
  20. 重磅!阅读器2021新功能上线

热门文章

  1. [codeigniter]CI中使用pChart绘制图表,已测通过
  2. 【Silverlight】汉诺塔游戏,带AI
  3. 我发起了一个 用 物理服务器 和 .Net 平台 构建云平台 的 .Net 开源项目
  4. HTAP数据库 PostgreSQL 场景与性能测试之 28 - (OLTP) 高并发点更新
  5. [JS] 动态修改ckPlayer播放器宽度
  6. swoole UDP TCP客户端
  7. DellEMC品牌正式启用50%是上一代的R730对比R74
  8. 怎样解决IPv4网络和IPv6网络的共存互通?
  9. 保护DNS对数字网络安全越来越重要
  10. SQL表内查重和删重