win10安装Git步骤和常用的Git命令

 
win10安装Git步骤和常用的Git命令   先从
Git官网,由于我的系统是64位的所以选择64-bit 
Git for Windows Setup

(由于墙的原因,下载速度会很慢,建议直接CSDN下载搜索Git来下载

2.Git安装

直接一路next,安装完成以后在cmd中输入git --version查看是否正确安装好

3.Git配置

  • 设置自己的昵称 
    git config --global user.name "yourname"

  • 设置自己的email 
    git config --global user.email "youreamil"

  • CRLF配置 
    由于之前出现过CRLF的报错,所以我在这里配置 
    git config --global core.autocrlf true

愉快的开始Git之旅

自己常用的一些Git命令

  • 显示command的helpgit help <command>
  • 将工作文件修改提交到本地暂存区git add <file>
  • 提交修改内容git commit "message"
  • 将本地主分支推到远程git push -u <remoteName> <localBrachName>
  • 克隆远程仓库git clone <url>
  • 初始化仓库git init
  • 创建仓库git remote add <remoteName> <url>
  • 删除远程仓库git remote rm <name>
  • 修改远程主机名git remote rename <remoteName> <newRemoteName>
  • 拉取远程仓库git pull <remoteName> <localBrachName>
  • 修改远程仓库git remote set-url --push <remoteName> <newUrl>
  • 获取远程仓库的更新git fetch <remoteName>
  • 获取远程仓库特定分支的更新git fetch <remoteName> <brachName>
点赞