일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- 토발즈
- ctrl-v
- src refspec master does not match any
- NeXTcube
- 부팅 대기
- 안드로이드
- amigaos
- 자바
- src refspec
- OSX
- remote origin
- 붙혀넣기
- comodore monitors
- ls에서 초
- dhcp 대기시간
- already exist
- Amiga
- 설정
- ls에서
- github
- 0.01
- 리눅스
- nextstation
- mysqld.socket(2)
- 생성된 파일의 초
- ls -al --full-time
- comp.os.inix
- refspec
- Linux
- MariaDB설치
- Today
- Total
목록Dev (3)
오늘 블록 만들어 쌓기
ubuntu 20.04를 설치하고나서 mysql을 설치하자마자 어떤 이유때문에 방금 설치한 mysql을 지우고 mariadb를 다시 설치하는 경우(혹은 그 반대)가 생길 수 있다. 이런경우 mysql을 실행하면 다음과 같은 에러를 볼 수 있다. mysql ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2) 이 때 /var/log/mysql/error.log를 보면 다음과 같다. [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See t..

github에 push할 때 $ git push -u origin master error: src refspec master does not match any error: failed to push some refs to 'https://github.com/계정/프로젝트.git 에러가 난다면 $ git add . $ git commit -m "수정내용" 파일을 추가 했는지 확인해 봅니다.

로컬에서 개발하던 소스를 github에 업로드 하기 위해 github에 저장소를 만들고 github 가이드를 따라 push를 하려는데, $ git init $ git config --global user.email "내이메일" $ git config --global user.name "내이름" $ git add . $ git commit -m "첫 커밋" $ git remote add origin git@github.com:계정/프로젝트이름.git fatal: remote origin already exists fatal: remote origin already exists -> 메시지를 만났다면, $ git remote rm origin -> 이렇게 입력합니다. $ git remote rm origin..