一、上传代码忽略node_modules
cmd 目录
git init // 之后可在.gitignore 文件中增加,默认已添加
二、上传代码
方式一:
-
github 新建仓库
新建仓库
- 生成的仓库地址.png
- 本地添加
git add .
git commit -m '描述信息’
git remote add origin 地址
git push -u origin master
cmd.png
3、github 2021.8.13 之后限制用户密码方式push,需要用token
git remote set-url origin https://<token>@github.com/<用户名>/<仓库名>.git
git remote set-url origin https://ccdg_yAigYL1Pc2AHwgL78SS6oZ3vpMebBw23HFev7@github.com/YoungEvita/pkg-demo.git
方式二: github desktop 创建上传,具体可参考github上传代码
TIP: 使用gitbhub destop上传文件出现“Received HTTP code 407 from proxy after CONNECT(Git 代理)”错误时,配置代理之后即可解决,配置代理方法可参考git配置代理
参考token
网友评论