美文网首页
git导入项目到远程仓库

git导入项目到远程仓库

作者: 疏花 | 来源:发表于2018-08-16 18:13 被阅读10次

创建 git 仓库:

mkdir myproject
cd myproject
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://xxxxxxx/myproject.git
git push -u origin master

已有项目?

cd existing_git_repo
git remote add origin https://xxxxxxx/myproject.git
git push -u origin master

相关文章

网友评论

      本文标题:git导入项目到远程仓库

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