[Git] error: refname refs/heads/master not found
깃 리포지토리 초기 생성 오류 깃허브에서 리포지토리를 생성하면 아래와 같이 실행해야 할 명령어들이 안내된다. echo “# 2022_Library_Python” >> README.mdgit initgit add README.mdgit commit -m “first commit”git branch -M maingit remote add origin https://github.com/HydroponicGlass/2022_Library_Python.gitgit push -u origin main 위 명령어들에서 README파일 생성(echo…, git add…)은 무시해도 잘 되었었는데, 오늘 git branch -M main 단계에서 아래와 같은 오류가 출력되었다. nothing … Read more