GIT-创建一个仓库
创建一个远程仓库
首先在码云创建一个仓库
文章图片
【GIT-创建一个仓库】创建好后拿到这个仓库的地址:https://gitee.com/codeyuany/g...
全局设置
首先可以在自己的本地环境中设置一下自己的一些个人信息
git config --global user.name "yong.yuan"
git config --global user.email "1218639030@qq.com"
设置好以后可以通过
config
相关的一些命令来查看一下已经配置好的信息。
[root@supman ~]# git config
usage: git config [options]Config file location
--globaluse global config file
--systemuse system config file
--localuse repository config file
-f, --file use given config file
--blob read config from given blob objectAction
--getget value: name [value-regex]
--get-allget all values: key [value-regex]
--get-regexpget values for regexp: name-regex [value-regex]
--replace-allreplace all matching variables: name value [value_regex]
--addadd a new variable: name value
--unsetremove a variable: name [value-regex]
--unset-allremove all matches: name [value-regex]
--rename-sectionrename section: old-name new-name
--remove-sectionremove a section: name
-l, --listlist all
-e, --editopen an editor
--get-colorfind the color configured: [default]
--get-colorbool
find the color setting: [stdout-is-tty]Type
--boolvalue is "true" or "false"
--intvalue is decimal number
--bool-or-intvalue is --bool or --int
--pathvalue is a path (file or directory name)Other
-z, --nullterminate values with NUL byte
--includesrespect include directives on lookup
例如获取一下配置列表
[root@supman ~]# git config -l
user.name=yong.yuan
user.email=1218639030@qq.com
单独获取一项配置
[root@supman ~]# git config --get user.name
yong.yuan
初始化仓库
创建一个文件夹,并初始化本地仓库,添加远程仓库 -remote
远程、origin
源头
[root@supman ~]# mkdir git
[root@supman ~]# cd git
[root@supman git]# git init
Initialized empty Git repository in /root/git/.git/
[root@supman git]# git remote add origin https://gitee.com/codeyuany/git.git
在初始化仓库后我们会发现文件夹里什么都没有
[root@supman git]# ls
但是其实在文件夹里存在一个隐藏的
.git
文件
[root@supman git]# ls -al
total 12
drwxr-xr-x3 root root 4096 Aug 31 20:57 .
dr-xr-x---. 9 root root 4096 Aug 31 20:56 ..
drwxr-xr-x7 root root 4096 Aug 31 20:57 .git
这个文件里面存在的是各种git的各种信息,删除这个
.git
文件后这个文件夹也就是个普通文件夹了
[root@supman git]# cd .git
[root@supman .git]# ls
branchesconfigdescriptionHEADhooksinfoobjectsrefs
使用
git remote -v
可以看到本地仓库关联的远程仓库信息,就是我们刚才添加的远程仓库。
[root@supman .git]# git remote -v
originhttps://gitee.com/codeyuany/git.git (fetch)
originhttps://gitee.com/codeyuany/git.git (push)
推荐阅读
- 一个人的旅行,三亚
- 一个小故事,我的思考。
- 一个人的碎碎念
- 七年之痒之后
- 我从来不做坏事
- 异地恋中,逐渐适应一个人到底意味着什么()
- 迷失的世界(二十七)
- live|live to inspire 一个普通上班族的流水账0723
- 遗憾是生活的常态,但孝顺这件事,我希望每一个人都不留遗憾
- NO.38|NO.38 我不是嫁不出去,而是不想嫁