# GIT使用

# Git是什么

Git 是一个开源的分布式版本控制系统,用于敏捷高效地处理任何或小或大的项目。

# Git如何工作

# Clone a repo

  • git clone <url> clone-a-repo

# Making changes in the working directory

changes

# Updating the remote repository

  • git add/ git commit/ git push update-remote-repo
  • git diff diff

# Updating the development environment

  • Fetching
    • git fetch Fetch
  • Pulling
    • git pull clone-a-repo
    • git pull --rebase clone-a-repo

# 解决冲突

# 视图化工具