githup

熟悉使用工具

情到浓时终转凉″ 提交于 2019-11-30 05:52:52
---恢复内容开始--- 熟悉使用工具心得 git地址: https://github.com/wxllovezn/AchaoCalculator.git git用户名: wxllovezn 学号后五位: 61423 博客地址: https://www.cnblogs.com/wxllovezn/ 作业连接 https://www.cnblogs.com/harry240/p/11515697.html 1.githup 我自己原先就安装好了VS和githup,使用方法只是一直在使用VS编程,而没有使用githup管理源代码。 在老师公布作业后我自己尝试了使用git我想说的是githup是真的难用无法理解没有办法很熟练的使用githup; 在刚开始使用时需要仔细阅读助教所发教程严格按照步骤进行安装使用githup;其中最难解决的问题是如何将助教所发的githup库克隆到自己的githup中;我开始克隆错误了,始终不知道错在哪儿,直到我室友提醒我一直没有克隆到我自己的库,最后在指点下完成了 *** 代码设计我只设计了两个操作数的程序,三位操作数就是先两位操作数做运算再与第三位做运算。 #include <iostream> #include<stdlib.h> using namespace std; #define random(a,b) (rand()%(b-a+1)+a)

Windows 下git 环境搭建 与Git could not read from remote reposito问题处理Could not remove config ,gitHup删除仓库

て烟熏妆下的殇ゞ 提交于 2019-11-28 05:39:40
Windows 下git 环境搭建 与Git could not read from remote reposito问题处理,gitHup删除仓库 先给大家推荐一篇博客 点击打开链接 ,但是不一定好用。 第一步: 下载mygit 下载地址:http://www.xiazaiba.com/html/25984.html 解压得到 .exe 文件根据网速,安装速度不一,耐心等待 傻瓜式安装即可. 第二步: 安装成功之后,打开 git bash. A.输入 “git config --global user.name 用户名”,“git config --global user.email 邮箱”设置用户名和邮箱. 配置好用户名和邮箱 第三步:需要给gitHup 账户生一个publicKey 官方方式: 1. Open Git Bash. 2. Paste the text below, substituting in your GitHub email address. ssh-keygen -t rsa -b 4096 -C "your_email@example.com" This creates a new ssh key, using the provided email as a label. Generating public/private rsa key pair. 3