
Git
ξ答案℡
日益努力,而后风生水起!
展开
-
Git fatal: Authentication failed for
一、错误 fatal: Authentication failed for $ git push -u origin master fatal: Authentication failed for 'https://code.aliyun.com/***/***.git/' 二、网上的解决方法(个人记录一下) 1.配置邮箱和用户名 $ git config --global --replace-all user.email “输入你的邮箱” $ git config --global --replac原创 2020-07-09 14:47:18 · 793 阅读 · 0 评论 -
《Git版本控制器》
**1.**查看本地仓库的文件状态 git status **2.**添加要提交的文件 git add . **3.**提交文件的备注信息 git commit -m "注释信息" **4.**提交到Git远程仓库到那个分支–master git push origin master原创 2020-06-09 11:57:17 · 426 阅读 · 0 评论 -
IDEA git 拉取项目时报 No tracked branch configured for branch master or the branch doesn't exist的提示。
解决方法: 按照提示在IDEA的Terminal中输入git branch --set-upstream-to origin即可。原创 2019-09-16 11:12:46 · 33792 阅读 · 6 评论