赞
踩
右键-Options,看到gitbash中复制粘贴功能快捷键和常用不同,且鼠标选中即复制
建库后克隆github库,地址带库名
git clone https://github.com/JL765/test001.git
在哪个位置输入克隆命令就克隆在哪个位置(建议不要放C盘,此处为示范)在gitbash中输入克隆代码 。
有时候会因为网络原因http代理出现443问题
解决办法:取消http代理或者用魔法
- git config --global --unset http.proxy
- git config --global --unset https.proxy
出现以上说明克隆成功
找到文件夹,随便新加入一个文件test.txt
- cd C:\test001//转到本地库
- ls//查看本地库所有文件
- git add "test.txt"
- git commit -m "自定义注释"
- git push -u origin main
本地库文件上传至github
参考:
【小白向】最新最详细的GitHub全站使用指南 - 知乎 (zhihu.com)GitHub新手用法详解【适合新手入门-建议收藏!!!】_github用什么邮箱注册-CSDN博客【Git】解决fatal: unable to access..Failure when receiving data from the peer或者OpenSSL SSL_read: Connect-CSDN博客
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。