
登录 https://gitee.com/,新建个人仓库:

Git 全局设置:
git config --global user.name "username"
git config --global user.email "email@163.com"创建git 仓库
mkdir test
cd test
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://gitee.com/***/test.git
git push -u origin master已有仓库?
cd existing_git_repo
git remote add origin https://gitee.com/***/test.git
git push -u origin master
新建index.php

暂存


提交

输入提交信息

点击推送


原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。