-
git 자주쓰는 명령어, git cli개발자의 공부는 은퇴까지 필수다/git & bitbucket 2021. 2. 3. 17:46
* CLI란?
Command Line Interface ( 텍스트 터미널을 통해 사용자와 컴퓨터가 상호작용하는 방식 )
* VCS란?
Version Control System (intellij에서 VCS를 이용하여 git연결, 하지만 기능에 따라서 cli로 진행해야하는 경우가 있다.
* git 명령어
$git remote remove origin
> git 연결 끊기
$ git init
> To initialize Git in a repository (repo), you just need to type the following command. If you don’t initialize Git, you cannot run any other Git commands within that repo.
(git을 초기화하지 않으면 해당 repository 내에서 다른 git명령을 실행할 수 없다고 한다)
$ git remote show origin
> 연결된 git 정보확인
$ git remote add pb [git url]
> git에 url을 연결
$ git remote add origin [git url]
$ git branch -M main
main이라는 branch로 접속하기
$ git push -u origin main
main branch에 commit and push 하기
$ git push origin master --force
git에 올라가있는 기존소스를 override push
$ git push origin master
git push [remote] [branch]
'개발자의 공부는 은퇴까지 필수다 > git & bitbucket' 카테고리의 다른 글
git branch base 변경하기 (0) 2022.12.27 [intellij] bitbucket 로그인 하기 (2) 2022.03.10 Git 의 stash 업무 시 활용하기 (0) 2022.03.08 git 특정버전으로 소스 받기, git pull version (0) 2021.02.18 intellij git ignore 추가 및 반영 (0) 2021.02.16