Git的安装与常用命令
一、Git的安装
(一)下载
官网下载:https://git-scm.com/downloads
镜像网站:https://registry.npmmirror.com/binary.html?path=git-for-windows/
(二)安装
双击安装,安装步骤参考,https://blog.csdn.net/GoodburghCottage/article/details/128749666
二、Git的常用命令
可在Windows控制台或Git bash Here
执行
(一)配置全局用户
# 用户名
git config --global user.name "username"
# 邮箱
git config --global user.email "username@email.com"
(二)克隆
# 克隆
git clone 远程仓库地址
(三)初始化本地仓库
git init
(四)添加远程仓库
git remote add origin 远程仓库地址
(五)添加项目文件
git add .
(六)提交
git commit -m "提交说明"
(七)推送
git push origin master
(八)其他
# 恢复最后一次提交
git revert HEAD
# 查看远程仓库
git remote -v
# 修改远程仓库
git remote set-url origin 远程仓库地址
# 删除远程仓库
git remote rm 远程仓库名(origin)