2

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

2 回答 2

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 的更简单的 url,以及您的登录名/密码:

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'
于 2013-06-01T21:56:11.853 回答
1

GitHub 在这方面的 UI 这些年来一直没有改变。如果你想通过 GitHub UI 添加目录,你必须这样做:

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

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

于 2021-03-06T00:09:44.817 回答