ディレクトリを作成しましたhello_git
。このディレクトリにhello_git.py
、「Hellogit!」を出力するファイルを作成しました。メッセージ。
次にhello_git
、ターミナルに現在のディレクトリを作成し、そのディレクトリに次のコマンドを次々に入力しました。
git init
git add hello_git.py
git commit -m 'first commit'
git remote add origin git@github.com:githubaccountname/hello_git.git
コマンドを入力すると、次のgit push origin master
ように尋ねられます。
Enter passphrase for key '/home/myusername/.ssh/id_rsa':
パスフレーズ(を使用して正常に認証されssh -T git@github.com
ます)を入力すると、次のようになります。
ERROR: Repository not found.
fatal: The remote end hung up unexpectedly
これが役立つかどうかはわかりませんが、次のようになります。
git remote -v
戻り値:
origin git@github.com:githubaccountname/hello_git.git (fetch)
origin git@github.com:githubaccountname/hello_git.git (push)
同様の投稿の回答を調べましたが、何も機能していないようです。