我按照以下步骤操作: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
p.s,我的帐户中有两个SSH密钥,因为我从两台计算机上推送。
答案 0 :(得分:3)
Create a Repo帮助页面对此进行了解释:
每次使用Git进行提交时,它都存储在存储库中(a.k.a。“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