GitLab配置免密登录和常用命令

SSH 免密登录

Windows免密登录

  1. 删除现有Key

访问目录:C:\Users\Administrator\ .ssh,删除公钥:id_rsa.pub ,私钥:id_rsa

2.生成.ssh 秘钥

运行命令生成.ssh 秘钥目录( ssh-keygen -t rsa -C xxxxxx@126.com),三次回车

复制代码
C:\Users\Z1561> ssh-keygen -t rsa -C xxxxxx@126.com
Generating public/private rsa key pair.
Enter file in which to save the key (C:\Users\Z1561/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in C:\Users\Z1561/.ssh/id_rsa
Your public key has been saved in C:\Users\Z1561/.ssh/id_rsa.pub
The key fingerprint is:
SHA256:Fssi9uVFvEYt+DykW7xJDW8jra56arh+bGbFgsyfT3c xxxxxx@126.com
The key's randomart image is:
+---[RSA 3072]----+
|                 |
|         o .     |
|        o B .    |
|       . @ B     |
|   oo...S % *    |
|   .+o.=o* B .   |
|     +.++ = E    |
|    . X..o .     |
|   .oBo=o..      |
+----[SHA256]-----+
​
C:\Users\Z1561>

GitHub配置SSH

登录 GitHub,点击用户头像→Settings→SSH and GPG keys

参考:DevOps - GitHub 代码托管平台_github 测试管理平台-CSDN博客

配置参考链接: DevOps - Git 版本管理_devops 代码版本管理-CSDN博客

常用命令

克隆远程仓库到本地

git clone http://192.168.96.22:9093/java-group/test-group.git

分支切换

复制代码
[root@qfedu.com ~]# git checkout develop     #切换develop分支

代码提交

[root@qfedu.com](mailto:root@qfedu.com) \~\]# git add main.cpp # 将某一个文件添加到暂存区 \[[root@qfedu.com](mailto:root@qfedu.com) \~\]# **git add .** # 将文件夹下的所有的文件添加到暂存区 \[[root@qfedu.com](mailto:root@qfedu.com) \~\]# **git commit -m 'note'** # 将暂存区中的文件保存成为某一个版本 \[[root@qfedu.com](mailto:root@qfedu.com) \~\]# git log # 查看所有的版本日志 \[[root@qfedu.com](mailto:root@qfedu.com) \~\]# git status # 查看现在暂存区的状况 git push origin develop 提交代码到develop 分支 git pull origin develop 更新develop 分支代码 ...待验证 #### 合并分支 ...待补充 ## 提交代码需要token,解决方案 进入设置setting -\> 找到插件Plugins -\> 搜索gitlab -\> 点击 Disable,禁用gitlab插件 ![](https://i-blog.csdnimg.cn/direct/a22a26210b894b13893370d0c71d8ef4.png) 应用以上设置后,再次克隆代码,即可使用账号密码进行登录。 ![](https://i-blog.csdnimg.cn/direct/851ce3f8787a42a1ba34d7285ce9175a.png)

相关推荐
Elastic 中国社区官方博客3 小时前
在 Elastic 中使用 MCP 自动化用户旅程以进行合成监控
大数据·运维·人工智能·elasticsearch·搜索引擎·自动化·可用性测试
长安链开源社区3 小时前
学者观察 | 基于区块链的隐私计算技术——北京理工大学教授祝烈煌
运维·区块链
learning-striving4 小时前
Ubuntu26.04下载安装教程
运维·服务器·vmware·虚拟机
码上行动 664 小时前
用U盘制作系统盘以及如何装系统
运维
invicinble4 小时前
关于搭建运维监控系统(Prometheus+Grafana)
运维·grafana·prometheus
__beginner__4 小时前
CentOS 磁盘占用异常排查与处理手册(df 高、du/ncdu 低)
linux·运维·centos
2501_927283584 小时前
荣联汇智立体仓库:为智慧工厂搭建高效“骨骼”与“中枢”
大数据·运维·人工智能·重构·自动化·制造
糖炒栗子03264 小时前
Windows 生成无密码 SSH 密钥 + Linux 配置公钥
ssh
KKKlucifer5 小时前
全域安全运维服务能力建设关键技术解析
运维·安全
Joseph Cooper5 小时前
Linux regmap 子系统实战:在驱动中 dump PMIC 寄存器定位供电问题
linux·运维·服务器