현재 local 디렉토리를 git에 등록

2024. 3. 16. 23:23Git

git에서 먼저 프로젝트 생성

https://marah.tistory.com/34

 

[Github] 현재 디렉토리를 새로운 Git 저장소로 만드는 방법

github Create a New Repository 생성한 레포지토리 Code 복사 디렉토리 선택 git init 명령어 git remote 명령어 5-1. 등록되어 있는 상태 5-2. 새 저장소 등록 5-3. 연결 된 저장소 삭제 5-4. 안전한 경로 등록 git add

marah.tistory.com

local repository 생성

git init

remote 주 등록

# 확인
git remote -v

# 등록
# git에서 clone 정보를 복사해서 넣으면 됨
git remote origin {주소}

# 확인
git remote -v

원하는 파일만 등록하도록 .gitignore 생성

# 현재 상태 확인
git status

# .gitignore 파일 생성
vi .gitignore
--------------------
제외할 대상만 기술
--------------------

git에 보관하길 원하는 파일 등록

# 등록
git add {원하는 디렉토리 또는 파일}

# 결과 확인
git status

환경설정 정보 등록

git config --global user.email {이메일}
git config --global user.name {이름}

최초 commit: commit을 해야 branch가 생김

# branch 확인
# 결과 없음
git branch

# 최초 commit
git commit -m "Init"

# branch 확인
git branch
---------------
* master
---------------

branch 명칭 변경: master --> {원하는 명칭}(필요한 경우만)

# git 서버에 있는 branch 명과 일치시킴
git branch -m {원하는 branch명}

git에 push

# 기본
git push origin {branch}

# 에러 발생하는 경우
#  ! [rejected]        {branch} -> {branch} (non-fast-forward)
# 최초이므로 강제로 push
git push origin {branch} --force

# origin {branch}를 명령에서 제외하기
git branch --set-upstream-to=origin/{bracnch}
git push

 

'Git' 카테고리의 다른 글

SVN 백업 및 복구  (0) 2024.12.29
Local과 Server 소스가 불일치 할때, git add -f  (0) 2024.08.12
gitlab-runner 명령어  (0) 2022.03.13
gitlab 에러  (0) 2022.02.01
Git 사용법  (0) 2021.12.05