GIT-创建一个仓库

创建一个远程仓库

首先在码云创建一个仓库

GIT-创建一个仓库_第1张图片

创建好后拿到这个仓库的地址:https://gitee.com/codeyuany/g...

全局设置

首先可以在自己的本地环境中设置一下自己的一些个人信息

git config --global user.name "yong.yuan"
git config --global user.email "[email protected]"
设置好以后可以通过 config相关的一些命令来查看一下已经配置好的信息。
[root@supman ~]# git config
usage: git config [options]

Config file location
    --global              use global config file
    --system              use system config file
    --local               use repository config file
    -f, --file      use given config file
    --blob       read config from given blob object

Action
    --get                 get value: name [value-regex]
    --get-all             get all values: key [value-regex]
    --get-regexp          get values for regexp: name-regex [value-regex]
    --replace-all         replace all matching variables: name value [value_regex]
    --add                 add a new variable: name value
    --unset               remove a variable: name [value-regex]
    --unset-all           remove all matches: name [value-regex]
    --rename-section      rename section: old-name new-name
    --remove-section      remove a section: name
    -l, --list            list all
    -e, --edit            open an editor
    --get-color     find the color configured: [default]
    --get-colorbool 
                          find the color setting: [stdout-is-tty]

Type
    --bool                value is "true" or "false"
    --int                 value is decimal number
    --bool-or-int         value is --bool or --int
    --path                value is a path (file or directory name)

Other
    -z, --null            terminate values with NUL byte
    --includes            respect include directives on lookup
例如获取一下配置列表
[root@supman ~]# git config -l
user.name=yong.yuan
[email protected]
单独获取一项配置
[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-x  3 root root 4096 Aug 31 20:57 .
dr-xr-x---. 9 root root 4096 Aug 31 20:56 ..
drwxr-xr-x  7 root root 4096 Aug 31 20:57 .git
这个文件里面存在的是各种git的各种信息,删除这个 .git文件后这个文件夹也就是个普通文件夹了
[root@supman git]# cd .git
[root@supman .git]# ls
branches  config  description  HEAD  hooks  info  objects  refs
使用 git remote -v可以看到本地仓库关联的远程仓库信息,就是我们刚才添加的远程仓库。
[root@supman .git]# git remote -v
origin  https://gitee.com/codeyuany/git.git (fetch)
origin  https://gitee.com/codeyuany/git.git (push)

你可能感兴趣的:(gitgithubjava)