(日本語下手です。すいません)
##実現したい事
GitやGitHubを使ってみたいなと思い、簡単なソースファイルを作ってリモートリポジトリへ反映させようと思いました。
しかし、あるサイトを参考に進めてみても、GitHubに反映されません。
PowerShellをみてみると、error:とでているので、どこかでエラーが起きたんだと思いますが、どうすればいいのか分かりません
次にPowerShellの文字をのせるので、GitHubにソースコードを公開するには(エラーを解決するには)どうすればいいか、教えてください。
##PowerShellの画面
PowerShell
1PS C:\Users\watan> cd test 2PS C:\Users\watan\test> git init 3Initialized empty Git repository in C:/Users/watan/test/.git/ 4PS C:\Users\watan\test> git status 5On branch master 6 7No commits yet 8 9Untracked files: 10 (use "git add <file>..." to include in what will be committed) 11 hello.html 12 13nothing added to commit but untracked files present (use "git add" to track) 14PS C:\Users\watan\test> git add hello.html 15PS C:\Users\watan\test> git status 16On branch master 17 18No commits yet 19 20Changes to be committed: 21 (use "git rm --cached <file>..." to unstage) 22 new file: hello.html 23 24PS C:\Users\watan\test> git commit -m "add new file" 25Author identity unknown 26 27*** Please tell me who you are. 28 29Run 30 31 git config --global user.email "you@example.com" 32 git config --global user.name "Your Name" 33 34to set your account's default identity. 35Omit --global to set the identity only in this repository. 36 37fatal: unable to auto-detect email address (got 'watan@WATANABE-family-PC.(none)') 38PS C:\Users\watan\test> git status 39On branch master 40 41No commits yet 42 43Changes to be committed: 44 (use "git rm --cached <file>..." to unstage) 45 new file: hello.html 46 47PS C:\Users\watan\test> git remote add origin https://github.com/SHERLOCK-KAZUNOCO/test-project.git 48PS C:\Users\watan\test> git push origin master 49error: src refspec master does not match any 50error: failed to push some refs to 'https://github.com/SHERLOCK-KAZUNOCO/test-project.git' 51PS C:\Users\watan\test>
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/05/23 02:53 編集
退会済みユーザー
2021/05/26 09:23
2021/05/26 09:44
退会済みユーザー
2021/05/26 10:55