You’ll learn how to:git
譯者注:有些GitHub的專有名詞沒有翻譯,不是由於我懶得翻。以本人愚見,這些專有名詞就算翻譯過來也沒有多大意思,原汁原味兒的比較好,實在不清楚能夠去金山詞霸查查具體含義。程序員
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.github
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). // 雖然教程說學習GitHub沒必要安裝Git,使用命令行操做,可是仍是建議讀者稍微熟悉一下Git命令分佈式
Tip: Open this guide in a separate browser window (or tab) so you can see it while you complete the steps in the tutorial.ide
Your hello-world
repository can be a place where you store ideas, resources, or even share and discuss things with others.工具
hello-world
. Click Create repository. 學習
譯者注:分支和快照是相似的概念,快照指的是在某一時間點的數據狀態集合,至關於一種特殊的鏡像文件ui
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
.this
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:idea
// 從master分支脫離出來到被merge到master分支以前,feature分支會有一段單獨歷程
Have you ever saved different versions of a file? Something like:
Branches accomplish similar goals in GitHub repositories. // Branches在GitHub倉庫中完成類似的目標---儲存一個文件的不一樣版本
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
. 譯者注:master分支保存就是往後要作出來的真正production
譯者注:這裏的readme-edits分支就是上文中提到的feature分支,屬於功能分支,用於增長某個模塊功能
These changes will be made to just the README file on your readme-edits branch, so now this branch contains content that’s different from master.
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 sho diffs, or differences, of the content from both branches. The changes, additions, and subtractions are shown in green and red. // pull requests後master分支變化會用不一樣顏色顯示,增長內容用綠色標識,刪除內容用紅色表示
As soon as you make a commit, you can open a pull request and start a discussion, even before the code is finished. // commit後就會discussion模塊出現
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.
Click on the image for a larger version
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.
In this final step, it’s time to bring your changes together – merging your readme-edits branch into the master
branch.
master
.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:
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入門教程已經介紹完了,相信經過您不屑的努力必定已經學會這些GitHub基礎操做。若是想要進一步得學習,推薦GitHub Flow Guide(GitHub流程指南,交互式得操做使得讀者更容易理解如何脫離分支、合併分支等概念)。
做爲Git系列教程中遠程倉庫篇---GitHub系列教程的第一篇文章,本文就係統地介紹了GitHub使用者該掌握的基礎內容。對系列教程感興趣的同窗,能夠選擇訂閱我博客,我會在工做之餘持續更新,與大夥共同提升(技術層面和英文層面),嘻嘻。