git基本使用
2019-08-16 本文已影响0人
pillows
GIT基本使用
[toc]
新建/克隆代码库
# 当前目录新建一个Git代码库
git init
# 下载一个项目和它的整个代码历史
git clone [url]
查看git的配置
git config --list
修改用户名和邮箱地址
git config --global user.name "your name"
git config --global user.email "your email"
添加远程仓库
git remote add origin https://github.com/pythonpillow/hello_world.git
查询远程仓库
git remote
删除指定远程仓库
git remote rm origin
撤销
# 恢复暂存区的所有文件到工作区
git checkout .
# 重置暂存区与工作区,与最新的commit保持一致
git reset --hard
创建SSH Key链接
ssh-keygen -t rsa -C "17623899174@163.com"
(这里注意看公钥和私钥的位置,使用ssh添加远程仓库的时候需要用)
回退版本
# 回退到上一个版本
git reset --hard HEAD^^
# 回退到指定版本
git reset --hard 86eefa
# 版本号可用 git log命令查看
分支
# 查看远程分支
git branch -a
# 查看本地分支
git branch
# 添加新分支,使用新分支push的时候,github会自动创建新分支
git checkout -b 新分支名
# 切换分支
git checkout 分支名
# 删除远程分支
git push origin :远程分支的名
# 删除本地分支
git branch -D 本地分支的名