本地已经创建目录,如何init到GitHub

Posted 数学,矩阵,算法——图像处理

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了本地已经创建目录,如何init到GitHub相关的知识,希望对你有一定的参考价值。

1. 在github上创建一个目录xxxx.git

2. 切换到本地目录

git init
git remote add origin xxxx.git //xxx.git就是你在远程github上创建资源http地址
git add --all
git commit -m ‘add‘
git push origin master

此时有可能会push不成功,报如下错误:

Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., ‘git pull ...‘) before pushing again.

这是因为在github上创建目录时添加了内容比如README.txt,因此本地仓库并不是最新,需要先更新本地目录保持与远端一致:

git pull origin master

再次执行push命令

git push origin master

 

以上是关于本地已经创建目录,如何init到GitHub的主要内容,如果未能解决你的问题,请参考以下文章

GitIntelliJ IDEA 提交代码到 GitCode 远程仓库 ( GitCode 创建远程仓库 | 将本地工程推送到 GitCode 远程仓库 | 验证权限 | 生成个人访问令牌 )(代码片

将本地代码上传到github

如何在github上上传自己的代码

如何将本地代码提交到github远程仓库

Git init初始化本地仓库

在github或者gitlab上,如何使用gitignore过滤已经上传的目录