git篇(笔记1:git的安装和提交)

1、廖雪峰的官方wiki教程

https://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000

2、安装

  • git官网下载:https://git-scm.com/downloads
  • 开始菜单->“Git”->“Git Bash”
  • 命令行设置用户名和邮箱
    全局设置
$ git config --global user.name "Your Name"
$ git config --global user.email "[email protected]"

局部设置

$ git config user.name "Your Name"
$ git config user.email "[email protected]"

查看

$ git config user.name
$ git config user.email
$ git config --list

修改不奏效时试试 --replace-all

$  git config --global --replace-all user.email "Your Name" 
$  git config --global --replace-all user.name "[email protected]"
  • 远程仓库
$ ssh-keygen -t rsa -C "[email protected]"

使用该命令创建SSH Key(密钥)。在用户主目录下(安装git的目录),找到.ssh目录下的id_rsa和id_rsa.pub,复制密钥

3、命令

  • git init创建仓库:$ git init(cd到当前目录下再创建,出现.git目录则表示成功)
  • pwd显示当前目录$ pwd
  • git add添加文件到仓库:$ git add readme.txt
    或添加全部文件$ git add .
  • git commit提交文件到仓库:$ git commit -m "wrote a readme file"
  • git push origin 分支名 推送到远程仓库$ git push origin master"
    先git pull 获取最新版本的代码再push,否则易出错

你可能感兴趣的:(git,git)