반응형 Git4 Windows 환경에서 VSCode에 Gemini CLI 무료 설치 방법 정리(Git, Node.js) Windows 개발 환경 세팅 - VSCode에서 Gemini CLi 무료로 사용하기 1. Git 설치 및 세팅1) git 설치구글에 git이라고만 검색해도 install 페이지가 나옵니다Git - Install Git - InstallChoose your operating system above.git-scm.com 설치 완료 후 cmd에서 확인> cmdgit --version2) git 세팅 git 사용자 정보를 등록하자 > cmdgit config --global user.name "사용자명"git config --global user.email "이메일"저는 깃허브 가입한 이메일을 넣어 세팅했습니다 그리고 git init 명령 입력git init ☞ 프로젝트 폴더에 .git 폴더가 생성 .. 2026. 2. 11. [VS Code] github 소스 가져오기 게시판 개발 setting 건드리다 꼬이고 망해서 다시 github에 있는 소스 가져오기로 했다 ... ㅠ 1. VS Code 실행워크스페이스 비어잇는 상태로 열기 (Ctrl + Shift + N) 2. git clone F1 (윈도우 기준) 이나 (Ctrl + Shift + P)으로 명령창 실행하기 git clone 검색 3. github repository URL 붙여넣기https://github.com/minjeong-j/REACT-NODE-APP.git GitHub - minjeong-j/REACT-NODE-APP: React와 Nodejs 웹 애플리케이션React와 Nodejs 웹 애플리케이션. Contribute to minjeong-j/REACT-NODE-APP development by.. 2024. 11. 15. error: failed to push some refs to 'https://github.com/주소.git' VS Code에서 github 업로드 중 에러가 발생했다 error: src refspec master does not match anyerror: failed to push some refs to 'https://github.com/주소.git' git push origin master해당 명령어에서 master를 찾을 수 없는 것 같았다 * 해결 방법 *깃 브랜치를 확인해본다git branchgit push origin main * git branch master 변경(선택) *해도 되고 안해도 되지만 관리를 위해 git branch를 master로 변경해보기로 했다git branch -M master 이제 origin master로 푸시할 수 있다 git push origin master 2024. 11. 13. git bash로 github에 프로젝트 업로드하기 오랜만이라 내가 까먹을까봐 gitbash 명령어를 정리해놓기로 했다 eclipse나 intellij말고 프로젝트를 github에 업로드하는 방법이다 git config --global user.name 깃허브이름 git config --global user.email 가입한이메일 cd 프로젝트경로 git init // =>폴더 내 .git 생성 git remote add origin 레포지토리 주소 // => git remote add origin (레포지토리 주소) : 원격지(origin) 연결 git status // => Untracked files 라며 git add 해야할 파일들을 확인할 수 있음 //나는 모두 추가할 예정이기 때문 git add --all 또는 git add * git comm.. 2023. 12. 14. 이전 1 다음 반응형