赞
踩
安装GIT:GitLab -- linux安装GIT_DGH2430284817的博客-CSDN博客
已配置ssh秘钥:GIT -- 配置ssh秘钥_DGH2430284817的博客-CSDN博客
参考GIT命令操作:
- git clone url 获取远程代码
- git branch 查看当期分支
- git branch -a 查看所有分支
- git branch newBranch 创建分支
- git pull 拉取与本地分支名相同的远程分支到本地
- git pull origin 远程分支名 拉取指定的远程分支到本地
- git checkout 你的分支名称 切换本地分支
- git merge branchName 合并分支到当前分支
- git status 工作区的状态,让我们时刻掌握仓库当前的状态
- git add 把文件添加到仓库
- git commit -m " xxx" 文件提交到仓库
- git push origin 本地分支名 提交代码到远程分支
- git diff 查看修改内容
登录GitLab,点击需要拉取代码的项目
复制git仓库的地址
拉取代码到本地
git clone git@192.168.233.128:root/cicdTest.git
进入cicdTest目录, 创建一个文件
- cd cicdTest
- touch firstPull.txt
查看版本库状态
git status
把文件 firstPull.txt添加进仓库
git add firstPull.txt
提交到仓库
git commit -m "first Pull"
提交代码到远程
git push -u origin master
远程仓库已经提交成功:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。