0916_업무기록

토끽·2022년 9월 16일
0

인턴

목록 보기
3/6

Git

특정 작업을 완료하지 않고 터미널을 강제종료 했을 때

작업 중 터미널을 모르고 종료시켰는데, git 명령어를 작성할 때

Another git process seems to be running in this repository, e.g.
an editor opened by 'git commit'. Please make sure all processes
are terminated then try again. If it still fails, a git process
may have crashed in this repository earlier:
remove the file manually to continue.

rm -f ./.git/index.lock

깃오류

깃레포다시연결

깃허브 레포 다시 연결하기

rm -rf .git
git init

git add .
git commit -m "first project commit"

git remote add origin
git push -u --force origin master

깃 브랜치 업데이트, 브랜치 변경 (새로 생성시)

git remote update
git fetch (이거 안해도 되던데 왜 적힌걸까)
git checkout #변경

깃 브랜치 확인하기

$ git branch

또는

$ git branch -list

profile
개발자가 되고 싶은 멋쟁이 새발자

0개의 댓글