使用国内镜像
淘宝镜像 https://registry.npmmirror.com/binary.html?path=git-for-windows/
感觉有点水
顺便复习一下基本命令吧,Desktop都给我用傻了
git init
<!-- 初始化仓库 -->
git clone
<!-- 克隆仓库 -->
git config --global user.name "xxx"
<!-- 配置用户 -->
git config --global user.email "xxx@xx.com"
<!-- 配置邮箱 -->
git add
<!-- 添加文件缓存 -->
git status
<!-- 查看文件状态 -->
git diff
<!-- 查询更新的详细命令 -->
git commit
<!-- 提交 -->
git reset HEAD
<!-- 取消缓存 -->
git rm
<!-- 删除 -->
git mv
<!-- 移动 -->
来看看.git文件里的文件都有什么功能
hooks
<!-- shell脚本 -->
info
<!-- -->
logs
<!-- 日志 -->
object
<!-- git对象 -->
refs
<!-- 指向分支的提交对象 -->
commit_editmsg
<!-- 最后一次提交时的注释信息 -->
config
<!-- 配置信息 -->
description
<!-- GitWeb -->
fetch_head
<!-- 分之在远程仓库的最新状态 -->
head
<!-- 本地分支的结果 -->
index
<!-- stage暂存区信息 -->
packed-refs
<!-- 克隆时的所有引用 -->
代码推送不上去怎么办?
git push -f
😋