Git如何克隆Gitlab?Git本地仓库如何上传Gitlab?

 首先确保本机已经安装上Git,其次确认可以正常访问Gitlab服务器

 环境:

  Git:Centos 7.x  192.168.126.138

  Gitlab: Centos7.x 192.168.126.137

1:填写Gitlabn仓库信息

  登陆到Gitlab服务器地址,新建仓库

创建成功后会自动跳转至该仓库的页面:

上面红色框内,是仓库地址,我们尝试把仓库克隆到本地仓库:

[[email protected] 123]#git clone http://192.168.126.137/root/Accommate.git  #192.168.126.137是指Gitlab服务器地址,可以修改成域名,看自己爱好

  Cloning into ‘Accommate‘...
  Username for ‘http://192.168.126.137‘: root    #Gitlab  账号
  Password for ‘http://[email protected]‘:    #Gitlab  密码
  warning: You appear to have cloned an empty repository.

将该Gitlab版本仓库添加到本机的远程列表中:

[[email protected] Accommate]# git remote add Accommate [email protected]:root/Accommate.git
[[email protected] Accommate]# git remote
Accommate
goodboys
origin

编写一个新文件:

[[email protected] /]# cd Accommate/
[[email protected] Accommate]# echo "This is Test txt - Accommate" > accommate

将该文件提交到本地的Git版本仓库:

[[email protected] Accommate]# git add accommate
[[email protected] Accommate]# git commit -m "add accommate"
[master (root-commit) 743413d] add accommate
 1 file changed, 1 insertion(+)
 create mode 100644 accommate

然后将本地的Git仓库同步到远程Git服务器上(第一次请加上参数-u,代表关联本地与远程):

[[email protected] Accommate]# git push -u origin master
Username for ‘http://192.168.126.137‘: root    #Gitlab 账号
Password for ‘http://[email protected]‘:    #Gitlab 密码
Counting objects: 3, done.
Writing objects: 100% (3/3), 238 bytes | 0 bytes/s, done.
Total 3 (delta 0), reused 0 (delta 0)
To http://192.168.126.137/root/Accommate.git    #上传的仓库
 * [new branch]      master -> master
Branch master set up to track remote branch master from origin.

查看下Web端的Accommate:

(上传文件前)

(上传文件后)刷新下web页面:

查看下是不是我们之前写的内容:

注:如果上传至Github,需要定义SSH-Key

时间: 2024-10-10 07:56:45

Git如何克隆Gitlab?Git本地仓库如何上传Gitlab?的相关文章

把本地仓库工程上传到github上和从gitbu同步工程到本地

1.在本地产生秘钥和公钥 [[email protected] git_project]# ssh-keygen -t rsa -C "[email protected]@qq.com" Generating public/private rsa key pair. Enter file in which to save the key (/root/.ssh/id_rsa): /root/.ssh/id_rsa #在这里输入rsa秘钥所在的目录 Enter passphrase (e

Git创建一个自己的本地仓库

如果我们要把一个项目加入到Git的版本管理中,可以在项目所在的目录用git init命令建立一个空的本地仓库,然后再用git add命令把它们都加入到Git本地仓库的暂存区(stage or index)中,最后再用git commit命令提交到本地仓库里. 创建一个新的项目目录,并生成一些简单的文件内容: $ mkdir test_proj $ cd test_proj $ echo “hello,world” > readme.txt 在项目目录创建新的本地仓库,并把项目里的所有文件全部添加

git 创建本地仓库、远程仓库,上传项目

1.在本地想创建git仓库的地方创建本地仓库 首先右键打开 Git Bash Here,如果没有,请先安装git,下载地址:https://git-scm.com/downloads git init 2.git add (myTest) -----myTest为即将上传的项目 3.git commit myTest -m "此处为上传的项目的备注" 4.git status 查看更新的文件 5.git push origin Test:Test    提交本地的Test分支作为远程仓

如何通过Git GUI将自己本地的项目上传至Github

githud是一个程序员以后成长都会使用到的,先不说很多优秀的开源框架都在这上面发布,光是用来管理自己的demo都已经让人感到很方便,用得也很顺畅.而真正让我下定决心使用github的原因是因为两次误操作,将自己所有的学习demo全都删除,而且由于数据太大,是彻底删除的那种,使用数据恢复软件,但然并卵,恢复的数据杂乱无章,另一次是由于自己的固态损坏,所有的东西也全没了,终于痛下决心好好研究github的使用. 在上面的原因之下,花了一天的时间来研究github,一下是一天来的学习成果. 1.至于

git入门学习(一):github for windows上传本地项目到github

Git是目前最先进的分布式版本控制系统,作为一个程序员,我们需要掌握其用法.Github发布了Github for Windows 则大大降低了学习成本和使用难度,他甚至比SVN都简单. 一.首先在github创建自己的账号 github官方网址为:https://github.com/,相信大家都应该有自己的github账号. 二.下载github for windows 官方下载网址为:https://desktop.github.com/,我下载的版本为3.2.0.0 三.安装github

Jmeter(二十二)_脚本上传Gitlab

Gitlab在容器中部署好了之后,本地直接打开.我们可以在里面创建项目,上传脚本. 1:新建一个项目,用来做远程脚本仓库 2:点击设置,将本地密钥与gitlab进行配对 在本地gui模式下查看git密钥,配置到gitlab仓库中保存 3:本地仓库中右键commit,将脚本上传到gitlab 4:远程仓库查看上传的脚本 加入QQ群:317765580,我们一起讨论吧! 原文地址:https://www.cnblogs.com/Zfc-Cjk/p/9042972.html

github学习:如何从本地把项目上传到github&&如何把github项目通过clone复制下来,详细教程

一.第一步---注册一个Github账号 首先要在GitHub上创建一个帐号,可以去官方网站注册一个账号. 前提:本地安装一个git 本人github:https://github.com/saucxs 二.git安装 下载地址:http://msysgit.github.io/ 二.第二步---生成私钥和秘钥 由于本地Git仓库和GitHub仓库之间的传输是通过SSH加密的,所以要在本地生成一个私钥和一个密钥 1.本地创建ssh key $ ssh-keygen -t rsa -C "[ema

将本地的项目上传到码云

将本地的项目上传到码云(https://www.cnblogs.com/jackson-zhangjiang/p/9759746.html) 1.码云上创建一个项目 bootMybatis (名字随你) 2.本地创建一个文件夹D:/bootMybatis,然后使用git bash 3.cd 到本地文件夹中D:/bootMybatis, 4.使用 git init 命令 ,初始化一个git 本地仓库(项目),会在本地创建一个 .git 的文件夹 5.使用 git remote add origin

玩转git--创建新仓库并上传代码

使用gogs 作为git服务器,新建一个仓库,上传本地项目到远程仓库. 一在远程服务器上面创建仓库 输入仓库名称,可见性选择私有,点击创建. 拷贝http 地址,以便后面使用(注意,如果拷贝ssh格式的,需要服务器开放22端口号) 二本地文件新建项目文件夹 右键选择 git bath here 项,打开命令行窗口 依次输入一下命令 touch README.md git initgit add README.md git commit -m "first commit" git rem