当前位置:   article > 正文

GitLab -- linux拉取和提交代码_linux gitlab 免密拉取项目

linux gitlab 免密拉取项目

前提:

        安装GITGitLab -- linux安装GIT_DGH2430284817的博客-CSDN博客

        已配置ssh秘钥:GIT -- 配置ssh秘钥_DGH2430284817的博客-CSDN博客

拉取代码:

        参考GIT命令操作:

  1. git clone url 获取远程代码
  2. git branch 查看当期分支
  3. git branch -a 查看所有分支
  4. git branch newBranch 创建分支
  5. git pull 拉取与本地分支名相同的远程分支到本地
  6. git pull origin 远程分支名 拉取指定的远程分支到本地
  7. git checkout 你的分支名称 切换本地分支
  8. git merge branchName 合并分支到当前分支
  9. git status 工作区的状态,让我们时刻掌握仓库当前的状态
  10. git add 把文件添加到仓库
  11. git commit -m " xxx" 文件提交到仓库
  12. git push origin 本地分支名 提交代码到远程分支
  13. git diff  查看修改内容

        登录GitLab,点击需要拉取代码的项目

        复制git仓库的地址

 拉取代码到本地

git clone git@192.168.233.128:root/cicdTest.git


进入cicdTest目录, 创建一个文件

  1. cd cicdTest
  2. touch firstPull.txt

查看版本库状态

git status

把文件 firstPull.txt添加进仓库

git add firstPull.txt

提交到仓库

git commit -m "first Pull"

提交代码到远程

git push -u origin master

远程仓库已经提交成功:

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/192941
推荐阅读
相关标签
  

闽ICP备14008679号