网站首页 站内搜索

搜索结果

查询Tags标签: git,共有 1887条记录
  • Git的学习

    文章目录 创建代码仓库配置身份 提交本地代码查看修改内容撤销未提交的修改撤销已提交的修改查看提交记录Git是一个开源的分布式版本控制工具 创建代码仓库 windows系统,从开始找到GitBash打开 配置身份git config --global user.name “xxx” git config --global user.e…

    2022/1/20 23:17:18 人评论 次浏览
  • 踩坑 gnutls_handshake() failed: The TLS connection was non-properly terminated.

    git clone 时遇到 gnutls_handshake() failed: The TLS connection was non-properly terminated. 原因:代理设置出错 解决方案:重置代理 git config --global --unset https.https://github.com.proxy git config --global --unset http.https://github.com.proxy 若…

    2022/1/20 11:14:10 人评论 次浏览
  • 踩坑 gnutls_handshake() failed: The TLS connection was non-properly terminated.

    git clone 时遇到 gnutls_handshake() failed: The TLS connection was non-properly terminated. 原因:代理设置出错 解决方案:重置代理 git config --global --unset https.https://github.com.proxy git config --global --unset http.https://github.com.proxy 若…

    2022/1/20 11:14:10 人评论 次浏览
  • 配置多个Git账号(windows 10)

    为什么要配置多个Git账号 一般情况下,我们都是一台电脑配置一个Git账号,使用如下命令: git config --golbal user.name "XXX" git config --golbal user.email "xxx@aa.com"而如果我们使用多个代码仓库,比如Gitee,GitHub,存在多个账户,因此需要…

    2022/1/20 7:17:55 人评论 次浏览
  • 配置多个Git账号(windows 10)

    为什么要配置多个Git账号 一般情况下,我们都是一台电脑配置一个Git账号,使用如下命令: git config --golbal user.name "XXX" git config --golbal user.email "xxx@aa.com"而如果我们使用多个代码仓库,比如Gitee,GitHub,存在多个账户,因此需要…

    2022/1/20 7:17:55 人评论 次浏览
  • git本地项目推送的远程仓库

    //创建git项目本地项目创建git仓库 //git创建项目 git remote add origin git@gitlab.com:xxxxx/xxxx项目.git git add . git commit git push origin master 完毕

    2022/1/19 23:25:43 人评论 次浏览
  • git本地项目推送的远程仓库

    //创建git项目本地项目创建git仓库 //git创建项目 git remote add origin git@gitlab.com:xxxxx/xxxx项目.git git add . git commit git push origin master 完毕

    2022/1/19 23:25:43 人评论 次浏览
  • git学习笔记

    安装git,可以直接去git官网,但是下载的比较慢, 可以使用国内的镜像:http://npm.taobao.org/mirrors/git-for-windows/ 安装之后在Windows键按下后会出现: 我们使用Git Bash即可 有关git中的命令 cd .. //用于返回上一级目录 cd 子目录名 //进入当前路径下对应…

    2022/1/19 23:23:43 人评论 次浏览
  • git学习笔记

    安装git,可以直接去git官网,但是下载的比较慢, 可以使用国内的镜像:http://npm.taobao.org/mirrors/git-for-windows/ 安装之后在Windows键按下后会出现: 我们使用Git Bash即可 有关git中的命令 cd .. //用于返回上一级目录 cd 子目录名 //进入当前路径下对应…

    2022/1/19 23:23:43 人评论 次浏览
  • aspnetcore源码调试过程

    参考官方文档https://github.com/dotnet/aspnetcore/blob/main/docs/BuildFromSource.md 1、git clone --recursive https://github.com.cnpmjs.org/dotnet/aspnetcore.git 或 git clone --recursive https://git.sdut.me/dotnet/aspnetcore.git 2、下载模块时中断下载,打…

    2022/1/19 20:55:32 人评论 次浏览
  • aspnetcore源码调试过程

    参考官方文档https://github.com/dotnet/aspnetcore/blob/main/docs/BuildFromSource.md 1、git clone --recursive https://github.com.cnpmjs.org/dotnet/aspnetcore.git 或 git clone --recursive https://git.sdut.me/dotnet/aspnetcore.git 2、下载模块时中断下载,打…

    2022/1/19 20:55:32 人评论 次浏览
  • centos 7 安装 grpc

    $ git clone -b RELEASE_TAG_HERE https://github.com/grpc/grpc$ cd grpc$ git submodule update --init如果速度慢,改.gitmodules[submodule "third_party/zlib"]path = third_party/zliburl = https://github.com.cnpmjs.org/madler/zlib.git# When using CM…

    2022/1/19 7:11:12 人评论 次浏览
  • centos 7 安装 grpc

    $ git clone -b RELEASE_TAG_HERE https://github.com/grpc/grpc$ cd grpc$ git submodule update --init如果速度慢,改.gitmodules[submodule "third_party/zlib"]path = third_party/zliburl = https://github.com.cnpmjs.org/madler/zlib.git# When using CM…

    2022/1/19 7:11:12 人评论 次浏览
  • git&github

    这个作业属于哪个课程 https://edu.cnblogs.com/campus/fzu/2022OOP这个作业要求在哪里 https://edu.cnblogs.com/campus/fzu/2022OOP/homework/12432这个作业的目标 学会使用github&git作业正文 如下其他参考文献 百度安装git反正不会弄,一直点next,然后就稀里糊涂…

    2022/1/19 6:09:28 人评论 次浏览
  • git&github

    这个作业属于哪个课程 https://edu.cnblogs.com/campus/fzu/2022OOP这个作业要求在哪里 https://edu.cnblogs.com/campus/fzu/2022OOP/homework/12432这个作业的目标 学会使用github&git作业正文 如下其他参考文献 百度安装git反正不会弄,一直点next,然后就稀里糊涂…

    2022/1/19 6:09:28 人评论 次浏览
扫一扫关注最新编程教程