GitHub learn quickly - a

Disclaimer: This article is a blogger original article, follow the CC 4.0 BY-SA copyright agreement, reproduced, please attach the original source link and this statement.
This link: https://blog.csdn.net/qq_34691097/article/details/102759392

title: GitHub quickly learn (a)
the Categories:

  • GitHub
    tags:
  • github
    abbrlink: 3997432119
    date: 2019-06-26 19:06:32

Original Address

First git && github 区别

Git code repository is stored locally.
GitHub is the network a Git repository services provided on

Social programming

So that everyone has the right to modify the source code

GitHub function

  • Git repository only have access to the Internet will be able to git repository
  • ISSUE is to assign a task to a question OR Issue tracking and management functions
    • Modify and correct each function corresponds to an Issue, only to see Issue, you will be able to know all the information associated with this change
  • Wiki can be changed at any time by an article wiki and save everyone, so people can collaborate on an article
  • Pull Request After pushing developers to change or add functionality to the warehouse, you can be requested through its merger into its warehouse
    - github pull request and provides the source code for the differences before and after the discussion feature

Git initialization settings

# 首先,设置姓名跟邮箱
git config --global user.name "Your Name" 
git config --global user.email "[email protected]" 

Improve code readability

git config --global color.ui auto

These will form the output file in the config ~ / .gitconfig in

Guess you like

Origin blog.csdn.net/qq_34691097/article/details/102759392