본문 바로가기

도구60

[Git] error: The following untracked working tree files would be overwritten by checkout: develop 브랜치에서 다른 feature 브랜치로 checkout 하는데 다음과 같은 에러가 발생했다. error: The following untracked working tree files would be overwritten by checkout: 해결방법 추적하지 않는 파일을 제거하면 된다. # == 적용하지 않고 무엇을 해야할 지만 보고 싶을 때 == git clean -fd --dry-run # 또는 git clean -fdn # == 적용하고 싶을 때 == git clean -fd 2024. 1. 30.
[Git] master -> main 합치기 (덮어쓰기) 로컬에서 프로젝트를 생성 후 깃 연결을 위해 git init 설정을 하면 master 브랜치로 생성되는데 Git Repository에서 프로젝트를 생성하면 main 으로 디폴트 브랜치가 생성된다. 기본 브랜치는 main 이기 때문에 push 나 pull이 제대로 되지 않는 경우들이 있다. 그래서 master 브랜치와 main 브랜치를 하나로 만들기 위해서 master 브랜치의 내용을 main으로 옮기고자 했다. 해당 방법은 main의 내용이 다 삭제됨으로 master와 동기화 하고 진행하는 걸 추천한다. git checkout master git branch main master -f git checkout main git push origin main -f 2023. 12. 7.
[GitHub] GitHub 인증 오류 해결 : https-urls for information on currently recommended modes of authentication. 문제 새로운 프로젝트를 받기 위해 git clone을 했는데 다음과 같은 에러가 나면서 프로젝트를 가져오지 못했다. https-urls for information on currently recommended modes of authentication. fatal: Authentication failed for 'https://github.com/' 해결방법 비밀번호를 입력할때 사용자 비밀번호가 아닌 토큰값으로 입력한다. 토큰 발급하기 프로필 > Settings > Developer settings > Personal access tokens > tokens (classic) > Generate new token (classic) Note, Expiration, Select scopes 에 대해서 작성하.. 2023. 10. 12.
[Mac] iterm2 단축키 iterm2 설치는 여기를 참고한다. 새창 - Command + n 새 탭 - Command + t 탭 이동 Command + 번호, Command + 방향키 탭 좌우 분할 Command + d 탭 상하 분할 Command + shift + d 탭 투명하게 설정 : Command + i 탭 투명하게 on/off : command + u 탭 닫기 : Command + w 탭 분할 시 포커스 찾기 Command + / 탭 분할 포커스 이동 : Command + [ , ] 전체 검색 : Command + option + e 검색 : command + F 클립보드 : Command + Shift + H 자동완성 : Command + ; 작업시간 보여주기 : Command + shift + e 현재 탭 모든 분할.. 2023. 6. 2.
[Mac] Mac 에서 mysql 버전 확인하기 homebrew 가 설치되어 있다면 해당 커맨드로 mysql 버전을 확인할 수 있다. $ brew info mysql 2023. 4. 20.
mac에 iterm2 설치해 터미널 커스텀하기 개발자라면 검은 화면에 화려한 컬러의 터미널 창을 사용해야하지 않나 싶다. 그런의미에서 터미널창을 꾸며보자 iTerm2 다운로드 먼저 iTerm2 를 다운해준다. https://iterm2.com/ iTerm2 설치하기 zip 파일을 누르면 응용프로그램이 자동으로 설치된다. iTerm2 테마 변경 1.아래 링크에서 원하는 테마를 선택한다. https://iterm2colorschemes.com/ 2. 테마의 이름을 누르면 링크가 나오는데 링크 부분을 복사한다. 3. 링크 부분은 위에서 복사한 링크로 사용한다. $ mkdir iTerm2Util && cd iTerm2Util ## curl -LO {원하는 테마 url} $ curl -LO https://raw.githubusercontent.com/mbad.. 2023. 4. 13.