Git、Gitlab、Github、Gitee使用

文章目录

  • 1 背景
  • 2 环境搭建
    • 2.1 gitlab使用
  • 3 参考资料
  • 四、问题记录
    • 4.1 Gitlab 不能SSH登录如何设置VScode不用每次输入密码

1 背景

需求:搭建自己的代码仓库(公网),管理一些demo代码。

选择:github、gitlab、gitee。

概念

  • git:一个免费和开源的 分布式版本控制系统、
  • github:GitHub是一个面向开源及私有软件项目的托管平台,因为只支持Git作为唯一的版本库格式进行托管,故名GitHub。企业版要收钱
  • gitlab:GitLab是Ruby开发的自托管的Git项目仓库,可通过Web界面访问公开的或者私人的项目。一般用于在企业内搭建git私服,要自己搭环境
  • gitee:(码云) 是 OSCHINA.NET 推出的代码托管平台,支持 Git 和 SVN,提供免费的私有仓库托管。不用自己搭建环境

官网:

  • git:https://git-scm.com/
  • github:https://github.com/
  • gitlab:https://gitlab.com/users/sign_in/
  • gitee:https://gitee.com/

Git 教程
https://www.runoob.com/git/git-tutorial.html

GitHub中文社区
https://www.githubs.cn/

GitHub是一个代码托管网站,背后使用Git作为版本管理工具(而非svn)。主要服务是将你的项目代码托管到云服务器上,而非存储在自己本地硬盘上。
类似的网站还有gitlab.com,bitbucket.com,coding.com(国内),gitee.com(国内)

GitLab 中文社区版
http://gitlab.badousoft.com/users/sign_in

git-gitLab使用教程
https://www.cnblogs.com/vs1435/p/11775861.html

2 环境搭建

2.1 gitlab使用

使用gitlab个人仓库有两种,一种是直接使用gitlab官网提供的个人仓库(公网),另外一种是搭建本地个人gitlab服务器(局域网)。

使用 SSH 密钥与 GitLab 通信
https://docs.gitlab.com/ee/user/ssh.html#add-an-ssh-key-to-your-gitlab-account

搭建个人gitlab服务器
https://blog.csdn.net/xkjscm/article/details/121527642

3 参考资料

github,gitlab,gitee的区别
https://blog.csdn.net/xueyijin/article/details/111915928

Gitlab和Github区别
https://blog.csdn.net/ichen820/article/details/108378210
https://blog.csdn.net/u014163312/article/details/115997956

四、问题记录

4.1 Gitlab 不能SSH登录如何设置VScode不用每次输入密码

方式一:项目仓库配置访问令牌

方式二:按下面步骤操作

Git: fatal: unable to access 'http://10.0.50.92:9980/NetConnection/RSU OBU.git 每次都要第二次输入密码才行。

  • 使用git 命令出现 fatal: unable to access ‘http://github.com****的问题
  • https://blog.csdn.net/bblood307/article/details/120307064
  • https://blog.csdn.net/HZC0217/article/details/121876026
# 设置git 的账号登陆密码、修改.git目录下的config文件
http://user:[email protected]:1000/xxx/xxx.git

# 解除ssl验证后,再次git即可
git config --global http.sslVerify false

# 取消http 和 https 代理
git config --global --unset http.proxy
git config --global --unset https.proxy

你可能感兴趣的:(工具,环境搭建,git,github)