개발자의 오르막
Git bash로 bower 설치하기 및 Git 명령어 본문
# bower 설치
- 먼저 Git bash 창을 열어 해당 프로젝트의 위치로 이동한다.
- bower.json 파일의 위치로 가 bower install 명령어로 설치를 하면 되는데,
이 때 해당 bower.json 파일 위치를 확인한 후 Git bash 창을 통해 경로를 이동하여 설치하면 된다.
# Git 명령어
- git init : git 생성하기
- git remote add origin <URL>
- git branch
지금 사용하고 있는 branch 와 다른 branch의 목록들을 볼 수 있다.
- git status
- git add .
- git add 파일
새로운 파일을 추가
- git commit -m "board Test";
메시지를 남겨서파일 스테이징하고 커밋하기
- git push
- git push origin boardTest
- git clone <저장소 url>
- git branch
지역 브랜치 목록 보기
- git branch -r
원격브랜치 목록 보기
- git branch -a
지역과 원격을 포함한 모든 브랜치 목록 보기
- git branch <새로운 브랜치>
현재 프랜치에서 새로운 브랜치 생성하기
- git branch <새로운 브랜치> <브랜리츨 생성할 위치>
- git merge <브랜치>
커밋하지 않고 합치기
- git config user.name
깃 계정 username 확인
- git config user.email
깃 계정 이메일 확인
- git init
git remote add origin <URL>
git add .
git commit -m <message>
git push -u origin master
- 다운받는 방법
git bucket 에서 다운받고자 하는 레파지토리의 clone 을 한다.
깃 파일을 복사할 폴더로 이동하여 깃 생성을 한다.
인텔리제이에 들어가서 clone한 파일을 import 한다.
- git 계정 전환 필요
Object Mapper
QueryDSL
NativeQuery
Git
- branch / master
- 뭔가 잘못됐을때, master에서 branch을 간다.
master 로 가는 것이 아니라,
master 는 최종
EntityManager
Git
타임리프 객체 전달
- git status
git branch
git branch -c construction
git checkout construction
git add .
git commit -m "test"
git push origin construction
git push
'CI-CD > Git' 카테고리의 다른 글
GitHub 로 스터디 운영하기 (Git Flow, Fork, Convention) (0) | 2022.09.19 |
---|