본문 바로가기
반응형

Tools342

git remote를 포함한 전체 branch 확인방법 유저명@DESKTOP-00GJNTR MINGW64 /c/workspace/front (master) $ git branch * master 유저명@DESKTOP-00GJNTR MINGW64 /c/workspace/front (master) $ git branch -a * master remotes/origin/master remotes/origin/web git branch를 사용할 경우 로컬에 있는 전체 branch를 확인할 수 있는데 git branch -a를 사용할 경우에는 repository 내에 있는 전체 branch를 확인할 수 있다 2022. 2. 21.
Git Bash Please use a personal access token instead. 해결방법 $ git push origin --delete develop Logon failed, use ctrl+c to cancel basic credential prompt. remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information. fatal: Authentication failed for 'https://github.com/wake.. 2022. 2. 21.
git branch -a escape 방법 git 사용 시 git branch -a 명령어를 사용하면 branch 수가 너무 많을 경우 스크롤을 맨 아래까지 내려도 (END) 만 뜨고 아무것도 못하는 상태에 놓이게 되는데 이때는 q 를 입력해주면 해당 상태에서 벗어날 수 있게 된다 2022. 2. 21.
DBeaver 조회결과 컬럼명 포함 복사 붙여넣기 하는 방법 DBeaver에서 컬럼명(Header)을 포함해서 조회결과를 복사 붙여넣기 하려는 경우 복사하려는 Row 선택 후 우클릭 > Advanced Copy > Advanced copy를 눌러주거나 Ctrl + Shift + C를 눌러주면 위와 같은 창이 뜨는데 OK를 눌러준 뒤 엑셀같은데 가서 붙여넣기를 해보면 컬럼명을 포함해서 ROW가 복사된 것이 보인다 2022. 2. 21.
ssh connection logout 방법 ssh session에 연결을 한 후 사용을 마치고 로그아웃 처리하려는 경우에는 exit 을 입력하고 엔터를 쳐주면 ssh 세션 로그아웃이 된다 2022. 2. 21.
Mac Terminal cd 북마크(즐겨찾기) 지정방법 맥에서 Terminal 사용 시 bashmarks로 북마크를 지정하여 바로 특정 경로로 이동할 수 있는데 일단 Terminal을 킨 뒤에 1. git clone git://github.com/huyng/bashmarks.git 2. cd bashmarks 3. make install 위 3개를 터미널에 입력해서 bashmarks를 깔아주고 이후 아래 명령어를 수행해주자 4. cd ~/ 5. touch .bash_profile 6. open -a TextEdit.app .bash_profile 7. source ~/.local/bin/bashmarks.sh 넣고 저장 bash_profile을 만든 뒤 텍스트 에디터로 열어서 bash_profile을 실행할 경우 bashmark.sh를 실행시켜주게 되는데 수.. 2022. 2. 15.

반응형