码云帮助中心
生成/添加SSH公钥
Git 全局设置:
git config --global user.name "haochen" git config --global user.email "517276326@qq.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/haochen465/test.git git push -u origin master已有仓库?
cd existing_git_repo git remote add origin https://gitee.com/haochen465/test.git git push -u origin master