본문 바로가기
반응형

개발 기록/git4

[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.
VsCode에서 Github 업로드하는 방법(initialize repository 안 뜸) 구글링하면 위에 뜨는 티스토리 포스팅이 안 되서 내가 보려고 다시 올리는 방법 1. git 설치 아래 주소에서 해당하는 운영체제의 파일을 다운로드  https://git-scm.com/downloads Git - DownloadsDownloads macOS Windows Linux/Unix Older releases are available and the Git source repository is on GitHub. Latest source Release 2.47.0 Release Notes (2024-10-06) Download Source Code GUI Clients Git comes with built-in GUI tools (git-gui, gitk), but thergit-scm.com gi.. 2024. 10. 31.
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.
반응형