0

我按照以下步骤操作:https ://help.github.com/articles/generating-ssh-keys

现在,我想在我的 github 帐户中创建一个文件夹,名为:“TODO_LIST”,并将我的项目推送到该文件夹​​中。

我该做什么?我位于要添加的文件夹中。

我是否需要执行以下操作?

$ git init
$ git add .
$ git commit -m 'first import'
$ git remote add origin git@github.com:alonshmiel/TODO_LIST.git
$ git push origin master

ps,我的帐户中有两个 SSH 密钥,因为我从两台计算机推送。

4

1 回答 1

3

这在Create a Repo帮助页面中有说明:

每次使用 Git 提交时,它都会存储在存储库(又名“repo”)中。要将您的项目放在 GitHub 上,您需要有一个 GitHub 存储库供其使用。

[...]

单击新建存储库。

填写此页面上的信息。完成后,单击“创建存储库”。

[...]

git init
# Sets up the necessary Git files

git add README
# Stages your README file, adding it to the list of files to be committed
git commit -m 'first commit'
# Commits your files, adding the message "first commit"

[...]

git remote add origin https://github.com/username/Hello-World.git
# Creates a remote named "origin" pointing at your GitHub repo
git push origin master
# Sends your commits in the "master" branch to GitHub
于 2012-12-25T10:07:48.843 回答