当前位置:   article > 正文

Python开发入门/搭建本地git/ 远程仓库gitlab_python创建gitlab远程tag

python创建gitlab远程tag

一.本地使用git

Git简介

• Git是一个开源的分布式版本控制系统,用于敏捷高效地处理任何或小或大的项目。
• Git 是 Linus Torvalds 为了帮助管理 Linux 内核开发而开发的一个开放源码的版本控制软件。
• Git 与常用的版本控制工具 CVS, Subversion 等不同,它采用了分布式版本库的方式,
不必服务器端软件支持。
推荐:《pro git》https://down.51cto.com/data/273438

Git工作流程

在这里插入图片描述
1.安装及配置
• Git安装后需配置用户相关信息

[root@node1 ~]# yum -y install git                                                //安装
[root@node1 ~]# git config --global user.name "Mr.LXH"             //设置用户名
[root@node1 ~]# git config --global user.email "LXH@tedu.cn"    //设置用户email
[root@node1 ~]# git config --global core.editor vim                       //设置默认编辑器为vim
  • 1
  • 2
  • 3
  • 4

查看配置信息:
在这里插入图片描述
2.git的应用流程
2.1.创建版本库
• Git 使用 git init 命令来初始化一个 Git 仓库,Git 的很多命令都需要在 Git 的仓库中运行,所以 git init是使用 Git
的第一个命令。

方法一:还没有项目前

[root@node1]# git init myself
初始化空的 Git 版本库于 /root/nsd2019/myself/.git/

[root@node1]# ls -A myself/
.git
  • 1
  • 2
  • 3
  • 4
  • 5

方法二:已有项目目录
在这里插入图片描述
2.2.添加文件到暂存区
工作区、暂存区和版本库 (git重要工作区域)
• 工作区:就是你在电脑里能看到的目录 (编写代码的项目目录)
• 暂存区:英文叫stage, 或index。一般存放在 “.git目录下” 下的index文件(.git/index)中,所以我们把暂存区有时也
叫作索引(index) (工作区与版本库之间的缓冲地带)
• 版本库:工作区有一个隐藏目录.git,这个不算工作区,而是Git的版本库(在工作区中有一个名为.git的目录,他是保
存文件的目录)
在这里插入图片描述
在这里插入图片描述

 [root@node1 self1]# git status                              //查看状态
  • 1

在这里插入图片描述

[root@node1 self1]# git status -s
   ?? index.html

]# git add index.html                        //提交到暂存区
]# git status 
  • 1
  • 2
  • 3
  • 4
  • 5

在这里插入图片描述

 ]# git status -s
 A  index.html
  • 1
  • 2

2.3提交文件到版本库

[root@node1 self1]# git commit -m "add new file index.html"
]# git status
  • 1
  • 2

2.4将文件从暂存区撤出

[root@node1 self1]# cp /etc/hosts .
[root@node1 self1]# git add .
[root@node1 self1]# git status
  • 1
  • 2
  • 3

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/405884
推荐阅读
相关标签
  

闽ICP备14008679号