git简单的使用指南

下载地址

git-for-windows: https://github.com/git-for-windows/git/releases/tag/v2.16.3.windows.1
直接安装,无需过多配置。

初次配置

git bash

git config --global user.name "Your name"
git config --global user.email "[email protected]"

生成密钥

ls -al ~/.ssh检查是否存在SSH Key,不存在使用以下方法生成

$ ssh-keygen -t rsa -C "[email protected]"
$ Generating public/private rsa key pair.
$ Enter a file in which to save the key (/Users/you/.ssh/id_rsa): [Press enter]
$ Enter passphrase (empty for no passphrase): [Type a passphrase]
$ Enter same passphrase again: [Type passphrase again]
//一路enter默认就好。

常用命令

  • 所有文件加入暂存区 git add -A
  • 提交 git commit -m "注释"
  • 提交到远程仓库 git push origin master (-f强制)
  • 查看提交日志 git log
  • 回退并撤销到某一次提交 git reset --hard +commitid(git log查看)
  • 远程仓库与本地保持一致 git push origin master -f

你可能感兴趣的:(git简单的使用指南)