1 Star 0 Fork 0

tensun / vue-study-2020

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
MIT

vue_shop

Project setup

npm install

Compiles and hot-reloads for development

npm run serve

Compiles and minifies for production

npm run build

Run your tests

npm run test

Lints and fixes files

npm run lint

Customize configuration

See Configuration Reference.

GIT-简易的命令行入门教程:

Git 全局设置:

git config --global user.name "tensun"
git config --global user.email "5329118+tensun@user.noreply.gitee.com"

创建 Git 仓库:

mkdir vue-study
cd vue-study
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://gitee.com/tensun/vue-study.git
git push -u origin master

已有仓库?

cd existing_git_repo
git remote add origin https://gitee.com/tensun/vue-study.git
git push -u origin master

在本地生成账号和密码,下一次提交项目不需要再输入账号密码

git config --global credential.helper store

生成/添加SSH公钥

ssh-keygen -t rsa -C "xxxxx@xxxxx.com"  

按照提示完成三次回车,即可生成 ssh key。通过查看 ~/.ssh/id_rsa.pub 文件内容,获取到你的 public key

提交代码到 码云

  1. git add .
  2. git commit -m "xxxxx"
  3. git push
MIT License Copyright (c) 2017-present PanJiaChen Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

简介

gun 展开 收起
MIT
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
1
https://gitee.com/tensun/vue-study-2020.git
git@gitee.com:tensun/vue-study-2020.git
tensun
vue-study-2020
vue-study-2020
master

搜索帮助