如何使用gitbash 把你的代码托管到github

Posted wangweigit3077

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用gitbash 把你的代码托管到github相关的知识,希望对你有一定的参考价值。

1.如果你没有创建仓库

mkdir vuex-playList
cd vuex-playList
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://gitee.com/wangweigit3077/vuex-playList.git
git push -u origin master
2.如果你已经创建了仓库
cd existing_git_repo
git remote add origin https://gitee.com/wangweigit3077/vuex-playList.git
git push -u origin master

以上是关于如何使用gitbash 把你的代码托管到github的主要内容,如果未能解决你的问题,请参考以下文章

借助GitHub托管你的项目代码

转: 借助GitHub托管你的项目代码

使用gitbash拉取github托管的项目到本地

TortoiseGit与Git生成ssh秘钥添加到代码托管平台

如何使用GitHub静态页面托管

github的使用