我的电脑中有一个名为"FilmReview“的目录,github中有一个名为”FilmReview.git
“的目录,但它是空的,我想将此文件夹推送到https://github.com/siddhartha-ramesh/FilmReview.git
中。
我尝试了以下几种方法:
siddhartha@siddhartha-Inspiron-545s ~/Desktop/Untitled Folder $ git init
Initialized empty Git repository in /home/siddhartha/Desktop/Untitled Folder/.git/
siddhartha@siddhartha-Inspiron-545s ~/Desktop/Untitled Folder $ git add .
siddhartha@siddhartha-Inspiron-545s ~/Desktop/Untitled Folder $ git commit -m "The whole Project"
[master (root-commit) 02a49f5] The whole Project
203 files changed, 39049 insertions(+)
create mode 100644 film_review/.project
create mode 100644 film_review/404.html
#Rest of the files in this folder
create mode 100644 film_review/trailers.html
create mode 100644 film_review/trailers.html~
siddhartha@siddhartha-Inspiron-545s ~/.ssh $ ls -a
. .. key key.pub known_hosts
siddhartha@siddhartha-Inspiron-545s ~/.ssh $ cat key.pub
ssh-rsa
# KEY HERE
siddhartha@siddhartha-Inspiron-545s ~/Desktop/Untitled Folder $ git remote add origin git@github.com:siddhartha-ramesh/FilmReview.git
fatal: remote origin already exists.
siddhartha@siddhartha-Inspiron-545s ~/Desktop/Untitled Folder $ git push origin master
To git@github.com:siddhartha-ramesh/FilmReview.git
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to 'git@github.com:siddhartha-ramesh/FilmReview.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Merge the remote changes (e.g. 'git pull')
hint: before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
谁来帮帮我
我也这样做了,但没有文件上传到我的git集线器
siddhartha@siddhartha-Inspiron-545s ~/Desktop/Untitled Folder $ git push origin master
Username for 'https://github.com': siddhartha-ramesh
Password for 'https://siddhartha-ramesh@github.com':
To https://github.com/siddhartha-ramesh/FilmReview.git
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to 'https://github.com/siddhartha-ramesh/FilmReview.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Merge the remote changes (e.g. 'git pull')
hint: before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
siddhartha@siddhartha-Inspiron-545s ~/Desktop/Untitled Folder $ git pill origin master
git: 'pill' is not a git command. See 'git --help'.
Did you mean this?
pull
siddhartha@siddhartha-Inspiron-545s ~/Desktop/Untitled Folder $ git pull origin master
warning: no common commits
remote: Counting objects: 3, done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 0 (delta 0)
Unpacking objects: 100% (3/3), done.
From https://github.com/siddhartha-ramesh/FilmReview
* branch master -> FETCH_HEAD
Merge made by the 'recursive' strategy.
README.md | 4 ++++
1 file changed, 4 insertions(+)
create mode 100644 README.md
发布于 2013-06-02 06:00:52
消息warning: no common commits
意味着在github存储库中已经有一个提交。由于您也在本地创建了自己的存储库,因此这两个存储库没有共同的祖先。这就是你不能推的原因。
创建github存储库时,您可能选中了使用自述文件初始化此存储库选项
我建议你在github上删除当前的存储库,并在没有初始提交的情况下创建一个新的存储库,即不要选中上面的复选框。然后,您可以通过将存储库推送到遥控器来开始。
发布于 2013-06-02 07:41:00
我猜你知道了,因为你在GitHub上的仓库不再是空的了。
不管怎样,我想你要找的是:
git push origin master -f
如果没有-f
(强制),您的推送将无法工作,因为GitHub上的存储库和本地存储库没有共同的历史记录。(很可能是因为您使用README
初始化了GitHub代码库)
-f
强制推送,即使远程分支与本地分支没有共同的祖先,或者两个分支已经分叉。但是正如您所说的,GitHub回购应该是空的,所以这样做是安全的。
https://stackoverflow.com/questions/16879771
复制