重置用户名,密码

git config --system --unset credential.helper

git config --global "你的名字或昵称"
git config --global user.email "你的邮箱"

保存用户名密码

git config --global credential.helper store

推送代码

git init
git add .
git commit -m "first commit"
git remote add origin https://gitee.com/sansan533/bk2115-test1.git
git push -u origin master

打包代码

npm i
gulp