赞
踩
git上传代码到gitee
1.在所要上传的文件空白处,右击Git Bush Here
2.输入命令
#1.git初始化
git init
#2.选择所在文件夹,注意.之前有空格
git add .
#3.提交到本地仓库
git commit -m "注释内容,按自己的内容写"
#4.链接到远程https
git remote add origin https://gitee.com/***
#5.强制上传
git push -u origin master -f
#6.弹出账户窗口输入
3.刷新gitee就可以看见自己上传的文件
这样容易导致文件被覆盖
正确做法
#1.将远程仓库克隆到本地
git clone https://gitee.com/用户个性地址/HelloGitee.git
#2.配置信息
git config --global user.name "你的名字或昵称"
git config --global user.email "你的邮箱"
#3.将修改后的文件上传
#将当前目录所有文件添加到git暂存区
git add .
#提交并备注提交信息
git commit -m "my first commit"
#将本地提交推送到远程仓库
git push origin master
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。