
README.md 수동 생성github에서 repository를 생성할 때 README.md 생성 여부에 체크하지 않은 경우, 아래와 같이 수동으로 생성할 수 있는 방법을 안내한다.create a new repository on the command line(로컬pc 폴더에서 Git Bash를 실행한 뒤, 명령어를 입력하는 방법) 1. README.md 파일을 생성하고, # githubrepo 라는 내용을 저장한다.echo "# githubrepo" >> README.md #linux 명령어 2. 초기화git init 3. 스테이지로 올리기git add README.md 4. 커밋git commit -m "first commit" 5. 브랜치 설정git branch -M main 6. 원격 저장소 주소 ..