服务器上建Git仓库

服务器上建Git仓库,第1张

$ apt-get install git

$ sudo adduser git

收集所有需要登录的用户的公钥,公钥位于id_rsa.pub文件中,把我们的公钥导入到/home/git/.ssh/authorized_keys文件里,一行一个。

如果没有该文件创建它:

首先我们选定一个目录作为Git仓库,假定是/home/gitlab/runoob.git,在/home/gitlab目录下输入命令:

一定要将初始化的仓库给Git

$ chown -R git:git probject.git

$ git clone git@<ip>:/home/gitlab/probject.git

然后就可以推送了

出于安全考虑,创建的git用户不允许登录shell,这可以通过编辑/etc/passwd文件完成。找到类似下面的一行:

git:x:1001:1001:,,,:/home/git:/bin/bash

改为:

git:x:1001:1001:,,,:/home/git:/usr/bin/git-shell

这样,git用户可以正常通过ssh使用git,但无法登录shell,因为我们为git用户指定的git-shell每次一登录就自动退出。

``ssh-keygen -t rsa -C “您的邮箱地址”``

Your identification has been saved in /Users/you/.ssh/id_rsa.

# Your public key has been saved in /Users/you/.ssh/id_rsa.pub.

cd ~/.ssh

查看公钥

cat id_rsa.pub

复制粘贴到码云上

到本地项目文件夹下,右键点击空白处,选择Git Bash Here,进入git窗口

一波操作后的页面

whereis git

yum install -y git

git version

eg: cd /home/www/test

git init

git config --global user.name "您的用户名称"

git config --global user.email "您的邮箱地址"

git remote add origin 自己的仓库地址

eg:git remote add origin https://gitee.com/***/**.git

ssh -v git@gitee.com 

然后输入 yes

我拉取的是master分支

git pull origin master

如果拉文件的时候报这个错误,那么我们需要生成ssh公钥

ssh-keygen -t rsa -C"xxxxx@xxxxx.com"

查看当前公钥,并且将公钥添加到码云后台的ssh公钥中

git branch --set-upstream-to=origin/码云本地分支 服务器本地分支

eg:git branch --set-upstream-to=origin/master master

git config --global credential.helper store

到此、配置完成

注意:安装的前提条件是配置好Git的相关环境或者安装好git.exe,此处不再重点提及

上传的步骤:(本文采用git 命令界面进行操作)

( git config --global user.email "you@example.com"

git config --global user.name "Your Name")实现登陆

1.进入本地的项目目录,右键“Git Bash here”,调出git命令行界面,然后输入

[plain] view plain copy 在CODE上查看代码片派生到我的代码片

git init

2.就是将目录下的所有文件上传,也可以将“.”换成具体的文件名

[plain] view plain copy 在CODE上查看代码片派生到我的代码片

git add .

3.将项目提交到gitHub

[html] view plain copy 在CODE上查看代码片派生到我的代码片

git commit -m "注释语句"

4.在github上创建新的repository

5.点击 “Create repository”跳转到一个连接,如下红色圈获取到本项目的github地址

6.将本地的代码关联到github上

[html] view plain copy 在CODE上查看代码片派生到我的代码片

git remote add origin 项目的github地址

7.上传代码到github之前需要先pull

[plain] view plain copy 在CODE上查看代码片派生到我的代码片

git pull origin master

8.上传代码到远程仓库

[plain] view plain copy 在CODE上查看代码片派生到我的代码片

git push -u origin master

之后输入账号,密码,上传到github


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/200572.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-04-02
下一篇2023-04-02

发表评论

登录后才能评论

评论列表(0条)

    保存