GitHub
GitHub Hello World https://guides.github.com/activities/hello-world/
You’ll learn how to:
—Create and use a repository
A repository is usually used to organize a single project.
—Start and manage a new branch
Branching is the way to work on different versions of a repository at one time.
—Make changes to a file and push them to GitHub as commits
On GitHub, saved changes are called commits.
—Open and merge a pull reques
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 show diffs, or differences, of the content from both branches.
GitHub上怎么修改别人的项目并提交给原作者 https://blog.youkuaiyun.com/qq_26787115/article/details/52133008
- fork
- git clone xxx
- 修改
- git add; git commit; git push
- Pull request
- Merge
Git
常用Git命令清单 http://www.ruanyifeng.com/blog/2015/12/git-cheat-sheet.html
几个专用名词的译名如下:
Workspace:工作区
Index/Stage:暂存区
Repository:仓库区(或本地仓库)
Remote:远程仓库
————————————————————————————————
git tutorial https://kezunlin.me/post/d29c6c94/