0


初始化git仓库(已存在项目)

初始化git仓库【已存在项目】

1.创建git仓库,获取仓库git地址

2.进入已存在项目根目录,打开git bash,执行命令,初始化仓库

$ git init
Initialized empty Git repository in D:/IdeaProjects/spb-wuyc-project/.git/

3.添加文件

$ gitadd.

4.配置gitignore文件,排除部分文件

5.提交到本地

$ git commit -m"初始化提交"

6.配置远端仓库

$ git remote add origin https://gitee.com/hj_boys/spb-wuyc-project.git

7.push到远程仓库某分支,完成代码上传

$ git push -u origin "master"
标签: git

本文转载自: https://blog.csdn.net/nickname12138/article/details/128484521
版权归原作者 WYC洛夫斯基 所有, 如有侵权,请联系我们删除。

“初始化git仓库(已存在项目)”的评论:

还没有评论