github常用的几个命令

  • git init    在项目中初始化一个项目
  • git add index.html    把项目需要管理的代码添加到暂存区,git add .  是所有文件
  • git commit -m ‘提交日志说明’   【提交会自动一个版本源代码版本】

  • 第一次commit会报错 原因是没有配置用户名和邮箱 git不知道是谁在提交
  • git config –global user.email “此处为邮箱”   配置邮箱
  • git config –global user.name “此处为用户名”    配置用户名
  • git log    查看本地仓库当前所有提交的版本号


豫ICP备17012861号