Kelichao / git-npm

git教程总结学习、记录
2 stars 1 forks source link

【git】常用命令 #4

Open Kelichao opened 7 years ago

Kelichao commented 7 years ago

命令行常用命令

普通git命令

配置全局git

  • git config --global user.name "Kelichao" # 设置名字
  • git config --global user.email "961904564@qq.com"# 设置git邮箱
  • git config --global user.name # 取得名字->Kelichao
  • git init # 把当前文件夹做成git仓库,生成隐藏.git文件

git文件操作

与github代码库之间的联系

分支操作