赞
踩
然后输入凭据,找到凭据管理器
然后编辑我们自己的账号就可以了。
git config --global user.name “邮箱”
git config --user,email “用户名”
之后的操作:
// 初始化仓库
git init
// 查看状态
git status
// 添加至本地
git add .
// 提交
git commit -m "第一次提交"
//添加gitee地址(这里是你的项目地址 .git文件)
git remote add origin https://gitee.com/xxx
//推送代码到远程仓库
git push -u origin master
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。