本地创建版本库
- 初始化
--bare
的作用是创建一个仅用于存放代码的仓库,也就是没有工作区
$ git init first.git --bare
初始化空的 Git 版本库于 /home/git/first.git/
$ ls
first.git
- 版本库地址
$ cd first.git/
$ pwd
/home/git/first.git
- 克隆仓库
$ git clone git@250:/home/git/first.git
$ cd first/
$ git remote -v
origin git@250:/home/git/first.git (fetch)
origin git@250:/home/git/first.git (push)
网友评论