GIT

Git 常用命令速查表

2019-12-18

创建版本库

  • git init # 初始化本地版本库
  • git clone <url> # 克隆远程版本库

安装配置

git config --global user.name "Your Name"
git config --global user.email your.email@example.com
git config --global color.ui true  	#  git status等命令自动着色
git config --global color.status auto
git config --global color.diff auto
git config --global color.branch auto
git config --global color.interactive auto

添加 .gitignore 文件,输入过滤文件以及文件夹

Project Awesome

2019-12-16