本文主要是介绍上传到github的指令,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
…or create a new repository on the command line
使用命令行 新建仓库:
echo "# 项目名" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/账号名/项目名.git
git push -u origin master
…or push an existing repository from the command line
使用命令行 上传到已存在的仓库:
git remote add origin https://github.com/账号名/项目名.git
git push -u origin master
之后更新代码可以直接使用git push。
源自github的提示信息,博主记性不好,只是收集起来方便自己看。
这篇关于上传到github的指令的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!