git 初次提交
Posted mmzuo-798
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git 初次提交相关的知识,希望对你有一定的参考价值。
前提:已经关联了ssh到本地,不用再输入用户名和密码
知道仓库地址:https://xxx.xxx.com/aiotcloud/yihao01-node-js.git
第一步:进入本地文件夹执行
git init
第二步:提交本地文件
git add .
git commit -m "第一次提交"
第三步:添加到远程仓库
git remote add origin https://xxx.xxx.com/aiotcloud/yihao01-node-js.git
第四步:push
git push -u origin master
以上是关于git 初次提交的主要内容,如果未能解决你的问题,请参考以下文章
Git的安装初次配置以连接github,在第三方软件中配置使用git 命令,提交项目到github的远程仓库出现bug的解决