上传带有图像的文件夹到github

时间:2013-06-01 14:31:19

标签: version-control github directory

正如标题所述我将我的项目上传到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.

2 个答案:

答案 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 添加目录,你必须这样做:

  1. 选择添加文件。
  2. 不要像您想的那样选择上传文件。而是选择“创建新文件”。
  3. 在显示您的项目名称的顶部,您应该会看到“命名您的文件...”。不要输入名称,而是输入您要添加的目录名称,不要按 Enter,而是输入“/”。
  4. 现在您需要向该目录添加一个真实的文件,或者只是创建一个包含虚假内容的虚假文件名。就我而言,我只是在第 1 行将其命名为“test.js”和“test”。
  5. 现在,您需要提交文件。
  6. GitHub 将创建一个目录并上传您的新文件。
  7. 现在,如果需要,您可以删除测试文件,而您的新目录将保留。

警告:我不确定您是否可以使用“/”技巧创建两层深的嵌套目录。

相关问题