목록github (4)
Star_project
brew.sh/ Homebrew The Missing Package Manager for macOS (or Linux). brew.sh 여기서 github 다운로드 > 주소 복사해서 터미널에서 (밑에 있음) lsjsj92.tistory.com/596 Mac OS 환경에서 Git 설치하기 - Mac git, github 셋팅 방법 포스팅 개요 이번 포스팅은 Mac OS에서 초기 git 환경을 셋팅하는 방법에 대해 작성합니다. Mac에 git 초기 설정을 하게 되면 github 등도 비밀번호 요구 없이 바로바로 이용할 수 있는 장점이 있습니 lsjsj92.tistory.com 참고해서 했다. eomminjeong@eomminjeong-ui-MacBookAir ~ % /bin/bash -c "$(curl -f..
mobicon.tistory.com/129 [Pro Git] Git 저장소 만들기와 상태 변경 명령 Git 저장소를 만들고 Working Directory, Staging Area, Git Directory를 오가는 명령을 알아보자. > Git 저장소 만들기 프로젝트 디렉토리를 만든다 프로젝트 디렉토리로 이동한다 git init 명령을 수행하면 .git.. mobicon.tistory.com
(minjeong) C:\study-one>git status HEAD detached 오류 발생시 (minjeong) C:\study-one>git status HEAD detached at refs/heads/master git checkout -b main git branch (minjeong) C:\study-one>git checkout -b main Switched to a new branch 'main' (minjeong) C:\study-one>git branch * main master (minjeong) C:\study-one> 새로 브랜치 만들어주기
…or create a new repository on the command line echo "# Study" >> README.md git init git add README.md git commit -m "first commit" git branch -M main git remote add origin https://github.com/EOMMINJUNG/Study.git git push -u origin main …or push an existing repository from the command line git remote add origin https://github.com/EOMMINJUNG/Study.git git branch -M main git push -u origin main ta..