赞
踩
1. 填写项目基本信息,点击【创建】;
2. git clone "新的项目地址";
3. 在下拉的项目下,配置你的用户名和邮箱
git config --global user.name "名字"
git config --global user.email "邮箱"
4. 检查有没有配置成功
git config user.name
git config user.email
5. 初始化本地仓库
git init
6. 把项目添加至本地仓库
git add .
7. 添加注释提交
git commit -m "注释"
8.将本地仓库与远程仓库连接
git remote add origin "项目地址"
如出现报错error: remote origin already exists. 表示远程仓库已存在
需删除关联的origin的远程仓库,然后在进行连接
git remote rm origin
9. 将远程仓库文件更新到指定远程仓库中
git pull --rebase origin master
10. 将本地仓库中的文件推送到指定的远程仓库中
git push -u origin master
11. 刷新gitee页面即可
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。