随笔分类 - Git
摘要:Git新版本使用教程 1. HTTPS 8月13号开始,github已经不支持使用用户名和密码来完成推送代码的鉴权了。理由是不安全。 https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations
阅读全文
摘要:git 使用教程 初始化本地仓库 $ git init 配置仓库信息 $ git config --global user.mail "email@emailc.com" $ git config --global user.name "name" 添加文件到暂存区时,忽略某些文件 $ touch
阅读全文