git入门

1、git初始配置

配置用户名和邮箱地址

$ git config --global user.name "Zhang Jianhu"

$ git config --global user.email [email protected]

选择编辑器(一般都是vim)

$ git config --global core.editor vim

开启颜色显示

$ git config --color.ui true

2、克隆仓库

$ git clone [email protected]:smart-lighting.git

3、一些常用命令

显示仓库状态

$ git show status

显示unstaged changes

$ git diff

显示 staged changes

$ git diff --cached

撤销上一次的commit

$ git commit --amend

unstage staged files

$ git reset HEAD file.py

撤销对文件所做的改动

$ git checkout --file.py

4、本地仓库与远程仓库之间进行交流的相关命令

提交到本地仓库,加入一些注释

git commit -as

把远端仓库拉到本地merge

 git pull --rebase origin master

将本地仓库推送到远端

git push



你可能感兴趣的:(git)