zoukankan      html  css  js  c++  java
  • Learn Git and GitHub without any code!

    What is GitHub?

    GitHub is a code hosting platform for version control and collaboration.代码托管平台。

    repositoriesbranchescommits, and Pull Requests

    Create a 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.
    5. Click Create repository:tada:

    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.

    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.

    Make and commit changes

    On GitHub, saved changes are called commits.

    Each commit has an associated commit 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.

    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-edits branch, so now this branch contains content that’s different from master.

    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 show diffs, 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.

    1、Click the  Pull Request tab, then from the Pull Request page, click the green New pull request button.

    pr-tab

    2、Select the branch you made, readme-edits, to compare with master (the original).

    branch

    3、Look over your changes in the diffs on the Compare page, make sure they’re what you want to submit.

    diff

    4、When you’re satisfied that these are the changes you want to submit, click the big green Create Pull Requestbutton.

    create-pull

    5、Give your pull request a title and write a brief description of your changes.

    pr-form

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

    Merge your Pull Request

    In this final step, it’s time to bring your changes together – merging your readme-edits branch into the master branch.

    1. Click the green Merge pull request button to merge the changes into master.
    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! :tada: :octocat: :zap:

  • 相关阅读:
    Go学习笔记(四)Go自动化测试框架
    VSCode快捷键
    Go学习笔记(三)Go语言学习
    Go学习笔记(二)搭建Visual Studio Code调试环境
    Go学习笔记(一)安装Go语言环境
    C# HTTPServer和OrleansClient结合
    C# Post HTTP Request
    Unity3D UGUI Shader画一个圆环
    Orleans学习总结(六)--应用篇
    Orleans学习总结(四)--集群配置篇
  • 原文地址:https://www.cnblogs.com/Beyron/p/6255841.html
Copyright © 2011-2022 走看看