-
git remote add가 실행되지 않는다면problems 2020. 4. 27. 23:32
git init 를 실행하면 됩니다.
git init 는 비어있는 레파지토리를 생성하거나 이미 존재하는 레파지토리를 초기화합니다.
$ git init
새로운 레파지토리(repository) 생성하고 싶다면
$ cd /path/to/my/codebase $ git init // 새로운 디렉토리 /path/to/my/codebase/.git $ git add . $ git commit
'problems' 카테고리의 다른 글
[201023]GraphQL only supports GET and POST requests. (0) 2020.10.23 [201021]Query engine binary for current platform "debian-openssl -1.1x" could not be found (0) 2020.10.21 백슬래시 - escaping sequence (0) 2020.04.24 [Javascript] 함수에서 여러 값을 받고 싶다면 (0) 2020.04.18 [Javascript] 의도하지 않은 상황에는 오류발생시키기 (0) 2020.04.18