男神鹏:gitee 初始化 应用。

简易的命令行入门教程:

Git 全局设置:

git config --global user.name "昵称"
git config --global user.email "邮箱号"

创建 git 仓库:
mkdir mymac
cd mymac
git init
git add -A
git commit -m "first commit"
git remote add origin 自己码云网址
git push -u origin master

已有仓库?
cd existing_git_repo
git remote add origin https://gitee.com/peng626/mymac.git
git push -u origin master

以上是windos 和码云相关联命令 。


原文地址:https://www.cnblogs.com/lyp0626/p/10496757.html