正如标题所述我将我的项目上传到github(https://github.com/siddhartha-ramesh/FilmReview.git),但我被困在这里。我不能上传一个名为img的目录给github任何人都可以帮助我如何做到这一点。我没有使用任何gui。我可以像创建新文件一样在github.com中创建一个新文件夹吗?
这就是发生的事情:
siddhartha@siddhartha-Inspiron-545s ~/Desktop/Untitled Folder $ git remote add origin git@github.com:siddhartha-ramesh/FilmReview.git
siddhartha@siddhartha-Inspiron-545s ~/Desktop/Untitled Folder $ git push origin master
The authenticity of host 'github.com (204.232.175.90)' can't be established.
RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48.
Are you sure you want to continue connecting (yes/no)? y
Please type 'yes' or 'no': yes
Warning: Permanently added 'github.com,204.232.175.90' (RSA) to the list of known hosts.
Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
siddhartha@siddhartha-Inspiron-545s ~/Desktop/Untitled Folder $ cd ~
siddhartha@siddhartha-Inspiron-545s ~ $ cd .ssh
siddhartha@siddhartha-Inspiron-545s ~/.ssh $ ssh-keygen -t rsa -C "siddhartharamesh@gmail.com"
Generating public/private rsa key pair.
Enter file in which to save the key (/home/siddhartha/.ssh/id_rsa): key
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in key.
Your public key has been saved in key.pub.
The key fingerprint is:
#key here
siddhartha@siddhartha-Inspiron-545s ~/.ssh $ cd /home/siddharhta/.ssh
bash: cd: /home/siddharhta/.ssh: No such file or directory
siddhartha@siddhartha-Inspiron-545s ~/.ssh $ cd /home/
siddhartha@siddhartha-Inspiron-545s /home $ cd *
siddhartha@siddhartha-Inspiron-545s ~ $ ls
Desktop Documents Downloads Music Pictures Public Templates Videos
siddhartha@siddhartha-Inspiron-545s ~ $ cd ..
siddhartha@siddhartha-Inspiron-545s /home $ ls
siddhartha
siddhartha@siddhartha-Inspiron-545s /home $ cd siddhartha/
siddhartha@siddhartha-Inspiron-545s ~ $ cd .ssh
siddhartha@siddhartha-Inspiron-545s ~/.ssh $ ls
key key.pub known_hosts
siddhartha@siddhartha-Inspiron-545s ~/.ssh $ cat key
-----BEGIN RSA PRIVATE KEY-----
-----END RSA _________________
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 ~/.ssh $ cd ..
siddhartha@siddhartha-Inspiron-545s ~ $ ls
Desktop Documents Downloads Music Pictures Public Templates Videos
siddhartha@siddhartha-Inspiron-545s ~ $ cd Desktop/
siddhartha@siddhartha-Inspiron-545s ~/Desktop $ ls
Aptana_Studio_3 C_C++ Codes key Untitled Folder WS
siddhartha@siddhartha-Inspiron-545s ~/Desktop $ cd Untitled\ Folder/
siddhartha@siddhartha-Inspiron-545s ~/Desktop/Untitled Folder $ ls
film_review
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.
答案 0 :(得分:2)
如果您的本地仓库(克隆了您的github仓库)中包含文件夹(本例中的图片),那么在GitHub上查看该文件夹所需要做的就是:
cd /path/to/that/folder
git add .
git commit "add folder with pictures"
git push
# or, if this is your first push:
git push -u origin master
换句话说,您添加该文件夹中的所有文件,然后推送它们。
首先克隆您的GitHub仓库而不是尝试添加远程,而是在本地克隆中添加内容并推送。
不要先使用ssh,使用基于https的简单网址和您的登录名/密码:
git clone https://siddhartha-ramesh@github.com/siddhartha-ramesh/FilmReview
cd FilmReview
git config user.name siddhartha-ramesh
git config user.email (your email address used on GitHub)
# add your files
git add .
git commit -m "Add folder"
git push -u origin master
# the next push can be simply 'git push'
答案 1 :(得分:1)
GitHub 在这方面的 UI 多年来一直没有改变。如果你想通过 GitHub UI 添加目录,你必须这样做:
警告:我不确定您是否可以使用“/”技巧创建两层深的嵌套目录。