美文网首页
Gitee 简易命令

Gitee 简易命令

作者: Rising_life | 来源:发表于2020-05-22 16:07 被阅读0次

简易的命令行入门教程:

Git 全局设置:

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

创建 git 仓库:

mkdir giteeceshidemo
cd giteeceshidemo
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin git地址
git push -u origin master

已有仓库?

cd existing_git_repo
git remote add origin git地址
git push -u origin master

相关文章

网友评论

      本文标题:Gitee 简易命令

      本文链接:https://www.haomeiwen.com/subject/qqaqahtx.html