GitHub
gitBash -branch 생성 및 전환
컴퓨터과학
2020. 4. 26. 20:21
GitBash -branch 생성 명령어
git branch test
GitBash -branch 전환 명령어
git checkout test
명령어 중 오류 발생 해결
:
2020/04/26 - [GitHub] - gitbash - not a valid object name: 'master'
gitbash - not a valid object name: 'master'
not a valid object name: 'master' 이 경고문은 현재 master 헤더를 넣어주지 않아서 그렇습니다. 그래서 예시로 텍스트 파일 test.txt 하나를 만들어서 git add "test.txt" git commit -m "1" 해주시면 해결됩니..
kwaksh2319.tistory.com
2020/04/26 - [GitHub] - gitbash : not a git repository
gitbash : not a git repository
git이 초기화를 시켜주지 않아서 발생하는 오류 git init 명령어를 gitbash에 넣어주면 해결
kwaksh2319.tistory.com