git
rainning_z
写博客的目的:记录自己遇到的问题,强化自己学习的知识,分享和讨论,很菜更要记录下来,好记性不然烂笔头,整理过的知识才能更好掌握
展开
-
git遇到的问题之“Please make sure you have the correct access rights and the repository exists.”
On branch master nothing to commit (working directory clean) 一查意思。你的分支很干净? 干净?excuse me? 然后git push origin master一下,漫长等待了弹出了fail:#¥%@(此处省略,我们看重点) Please make sure you have the c...转载 2018-12-12 15:35:12 · 971 阅读 · 0 评论 -
Incorrect username or password ( access token ) Authentication failed for 'https://gitee.com/r
最糟心的事就是网上一堆告诉你这个问题要这样解决,,但是你就是解决不了,,,remote: Incorrect username or password ( access token )fatal: Authentication failed for 'https://gitee.com/*****用户名或密码不正确没有https://gitee.com/ 的许可权限。。。。我就想...原创 2018-12-14 00:38:41 · 8771 阅读 · 4 评论 -
在Windows上安装Git
在Windows上安装Git在Windows上使用Git,可以从Git官网直接下载安装程序,(网速慢的同学请移步国内镜像),然后按默认选项安装即可。安装完成后,在开始菜单里找到“Git”->“Git Bash”,蹦出一个类似命令行窗口的东西,就说明Git安装成功!安装完成后,还需要最后一步设置,在命令行输入:$ git config --global user.name "Y...转载 2018-12-10 22:48:19 · 194 阅读 · 0 评论 -
git 常用命令整理 下载 更新,上传
9初始化上传1. $ git init #初始化2. $ git add . # . 或 * 代表全部添加3. $ git status #获取状态,很实用的一个功能,对文件做了操作都能看到各种提示信息4 $ git commit -m "first push" #添加注释5 $ git status #获取状态,很实用的一个功能,对文件做了操作都能看到各种提示信息6...原创 2018-12-22 23:23:35 · 280 阅读 · 0 评论