djangogirlsのチュートリアルをやっているのですが、
下のサイト画像の下方、Pythonanywhere-command-lineで入力した時git pullと
入力すると下のエラーが返されてしまいました。
そこでリンク内容を参考に解決しようとしたのですが、
コミット名と自分の作業ブランチが何のことなのかわかりません。教えて下さい。
djangogirlsに沿って行った動作
commandline
1C:\Users\ユーザー名>cd djangogirls 2 3C:\Users\ユーザー名\djangogirls>git status 4On branch master 5Your branch is up to date with 'origin/master'. 6 7nothing to commit, working tree clean 8 9C:\Users\ユーザー名\djangogirls>git add --all 10 11C:\Users\ユーザー名\djangogirls>git status 12On branch master 13Your branch is up to date with 'origin/master'. 14 15nothing to commit, working tree clean 16 17C:\Users\ユーザー名\djangogirls>git commit -m "Modified templates to display posts from database." 18On branch master 19Your branch is up to date with 'origin/master'. 20 21nothing to commit, working tree clean 22 23C:\Users\ユーザー名\djangogirls>git push 24Everything up-to-date 25 26C:\Users\ユーザー名\djangogirls>
エラー文
pythonanyweherecommand
1error: Your local changes to the following files would be overwritten by merge: 2 db.sqlite3 3 mysite/settings.py 4Please, commit your changes or stash them before you can merge.
djangogirls
djangogirlsリンク内容
回答1件
あなたの回答
tips
プレビュー