Git基础
法迪
Android系统与续航工程师、应用开发工程师
https://github.com/sufadi
332157261@qq.com
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
[Git]OpenSSL SSL_read: Connection was reset, errno 10054
Git 报错OpenSSL SSL_read: Connection was reset, errno 10054服务器的SSL证书没有经过第三方机构的签署D:\AsProject\gitProject>git clone https://github.com/sufadi/ReciteInterviewQuestions.gitCloning into 'ReciteInterviewQuestions'...fatal: unable to access 'https://github.原创 2021-12-25 13:55:04 · 1365 阅读 · 0 评论 -
Window Permission denied (publickey)
1. Window Permission denied (publickey)Ubuntu可以使用 git 现在代码,但是Window 没配置 git 相关,下载某些项目需要权限。故提示如下git fetch && git rebasePermission denied (publickey).fatal: Could not read from remote reposi...原创 2019-12-13 13:21:51 · 2448 阅读 · 0 评论 -
Git for window 提示 Your console font probably doesn't support Unicode.
一、现象Warning: Your console font probably doesn't support Unicode. If you experience strange characters in the output, consider switching to a TrueType font such as Consolas!====================原创 2018-01-11 10:22:26 · 4531 阅读 · 0 评论 -
Git基础-安装Git
下载地址官方下载地址https://git-scm.com/downloads廖老师的百度网盘https://pan.baidu.com/s/1kU5OCOB#list/path=%2Fpub%2Fgit安装一路 next 即可 设置用户名和邮件git config --global user.name "Your Name"git config --global user.email "ema原创 2017-12-26 22:30:05 · 702 阅读 · 0 评论 -
Git基础-如何上传一个项目到Github
登陆Githubhttps://github.com/ New一个Repositories/NewNextNext接下来按照Github的官方提示操作即可…or create a new repository on the command lineecho "# python3-webapp-Su" >> README.mdgit initgit add README.mdgit commi原创 2017-12-26 22:50:56 · 1680 阅读 · 0 评论 -
GitHub新建分支的步骤
1.查看当前所有分支git branch -rE:\Andorid>git branch -r origin/android_N origin/master2.新建分支git branch android_O3.切换到新分支git checkout android_O4.添加修改git add .5.提交修改git comm...原创 2018-03-13 10:44:08 · 1786 阅读 · 0 评论 -
Git下载仓库的指定分支,并重新命名
1. Git 下载仓库的指定分支格式 git clone -b 分支名 地址例如如下git clone -b original ssh://suhuazhi@192.168.8.99:29418/lavao6761/alps/vendor/mediatek/proprietary/packages/apps/MtkSettings && scp -p -P 29...原创 2018-08-13 19:13:09 · 2962 阅读 · 0 评论 -
[git]192.168.8.50无法更新代码
1. 无法更新代码换了一个新的git服务器192.168.8.50导致代码无法更新The authenticity of host ‘[192.168.8.50]:29418 ([192.168.8.50]:29418)’ can’t be established.RSA key fingerprint is 20:93:02:5a:fe:8b:7d:18:f4:48:4b:f7:f4:f...原创 2019-01-12 14:57:24 · 3871 阅读 · 0 评论
分享