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、2 台のコンピューターからプッシュするため、アカウントには 2 つの SSH キーがあります。

4

1 に答える 1

3

これについては、Create a Repoヘルプ ページで説明されています。

Git でコミットを行うたびに、リポジトリ (別名「リポジトリ」) に保存されます。プロジェクトを 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 に答える