Ian's Archive 🏃🏻

Profile

Ian

Ian's Archive

Developer / React, SpringBoot ...

📍 Korea
Github Profile →
Categories
All PostsAlgorithm19Book1C1CI/CD2Cloud3DB1DesignPattern9ELK4Engineering1Front3Gatsby2Git2IDE1JAVA7JPA5Java1Linux8Nginx1PHP2Python1React9Security4SpatialData1Spring26
thumbnail

git cli 명령어 메모

Git
2021.04.20.

Git 명령어 정리

Git, Git flow 명령어

Git commit

복사
$ git commit -m "{commit message}"

Git Branch 생성 및 checkout

복사
$ git checkout -b

Git Branch 삭제

복사
$ git branch -d {브런치 명}

Git Branch 확인

복사
$ git branch

$ git branch -v

Git Branch 상태 확인

복사
$ git branch --merged

이미 Merge한 브랜치 목록을 확인한다.

Git log 확인

복사
$ git log --oneline --graph

태그 목록 조회

복사
$ git tag -l

태그 checkout

복사
git checkout tags/<tag_name>

태그 checkout

복사
git checkout tags/<tag_name> -b <branch_name>>

추가로 기억해야 할 명령어는 계속 정리할 예정이다.

Git Tips!

Previous Post
git branch 전략
Next Post
Rsync 정리
Thank You for Visiting My Blog, I hope you have an amazing day 😆
© 2023 Ian, Powered By Gatsby.