其他分享
首页 > 其他分享> > coderwhy老师vue.js b站视频教程笔记——第四部分

coderwhy老师vue.js b站视频教程笔记——第四部分

作者:互联网

从项目开始


07.(掌握)项目开发-项目创建和github托管

1.项目目录列表有config文件夹是脚手架2,没有的话是脚手架3

2.使用github

2.1 通过拷贝的方式提交代码到github--------------------

1)github创建项目

2)本地创建项目vue create supermall

3)git clone https://...git

4)本地项目复制到git的clone的文件夹中(node_modules和.git不需要复制)

5)添加:git add .

6)提交到本地:git commit -m '项目初始化'

7)提交到远程:git push

2.2 不通过拷贝的方式直接提交本地代码到github--------------------

git init
git add .
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/q124467623/supermall_test.git
git push -u origin main

 

标签:github,vue,项目,js,add,git,提交,commit,coderwhy
来源: https://blog.csdn.net/q124467623/article/details/118094741