Skip to content

Latest commit

 

History

History
49 lines (28 loc) · 952 Bytes

Git安装.md

File metadata and controls

49 lines (28 loc) · 952 Bytes

Git安装

Mac :Terminal中运行Brew install git 后git --version查看版本


Github

注册

点击此处注册

新建仓库


命令行上传

  • 打开刚刚安装的Git版本中的Git Bash
  • 先配置你的Git和Github

git config --global user.name s1119858711

git config --global user.email [email protected]

  • git init
  • git add .
  • git commit -m '***'
  • git remote add origin ***
  • git remote show origin
  • git push origin master
  • exit

Pull requests

  • 多个人完成一个Repo,
  • pr。允许你的申请,提交我的项目里。