Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 운체 1주차
- 코딩테스트
- DP
- python자료형
- python기본
- 인텔리제이
- 파이썬 알고리즘 인터뷰
- 인스타
- 자료구조
- git기초
- 최단거리
- 그리디
- c언어
- 참고X
- #코린이 #코딩 #할 수 있다
- 백준
- 4장
- 1주차(1)
- 도커
- c언어 제어문
- Git
- 스택
- c언어 기본
- 코테
- git오류
- git 오류
- python기초
- 데베시 1주차
- Workbench
- 5장
Archives
- Today
- Total
목록분류 전체보기 (103)
하루살이 개발자
[GitHub 오류] git repository에서 폴더에 접근할 수 없을 때(폴더가 회색일 때)
오류 발생 원인 git끼리 충돌을 했기 때문 해결방안 회색으로 처리된 폴더에 들어있는 .git을 지운 후 다시 커밋하기 $ cd ./(오류가 발생한 디렉토리로) $ ls -al $ rm -rf .git $ git rm --cached . -rf $ git add . $ git status $ git commit -a -m "~" $ git push origin master 참고사이트: https://zeddios.tistory.com/151
기타/GitHub
2022. 1. 23. 00:30
[MariaDB] Mac MariaDB 설치 및 조작 (mac)
1. 설치 brew install mariadb 2. 조작 1) 동작(서버 구동) brew services start mariadb 2) 동작 확인 brew services list 3) 중지 brew services stop mariadb 3. MariaDB root 계정 생성 sudo mariadb-secure-installation (mariadb 보안 설정) 설치 후 최조 접근이므로 비밀번호가 없다 enter -> Y/n에서 모두 Y -> 비밀번호 설정 4. root 계정으로 접근 mysql -u root -p 1)Database 목록보기 MariaDB [(none)]> show databases; 2) 나오기 MariaDB [(none)]> exit
Backend/DB
2022. 1. 11. 20:46