git如何新建仓库,并初始化代码
Posted gramblog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git如何新建仓库,并初始化代码相关的知识,希望对你有一定的参考价值。
1、到git服务器后台创建新的仓库名,这个时候会生成仓库的路径:https://gitserver.test.com/waimai/test111.git
2、找到本地的代码目录,打开git的命令窗口,执行下面的命令
-
touch README.md
- git init (初始化仓库)
- git add -A
- git commit -m "初始化代码"
-
git remote add origin https://gitserver.test.com/waimai/test111.git
-
git push -u origin master
注意:这里在执行最后一步push的时候,可能会出现如下错误:
remote: User permission denied
fatal: unable to access ‘https://gitserver.test.com/test.git/‘: The requested URL returned error: 403
出现这个错误的原因是因为当前账号没有管理这个仓库的权限造成的,直接去git服务器后台把这个账号添加到管理协作者里面,然后再执行push就可以了!
以上是关于git如何新建仓库,并初始化代码的主要内容,如果未能解决你的问题,请参考以下文章