728x90
반응형
master 가 아닌 branch로 덮어 쓰기
브랜치에서 작업중이었다면, master 대신 branch 이름을 작성해주시면 됩니다.
git fetch --all
stash 삭제
stash 는 pop / push 로 관리 한다.
1번 stash 삭제
git stash deop 1
모든 stash 삭제
git stash deop
branch 생성과 동시에 이동
branch 하고 checkout 하기 귀찮으니깐 ,,
git switch -c feach/{12}/error
Local branch 전체 삭제
branch 막 쌓일 때 전체 삭제 ㄱㄱ
git branch | grep -v '^*' | xargs git branch -d
728x90
반응형
'개발중 > Git' 카테고리의 다른 글
[Git] 브랜치를 로컬과 원격에서 모두 삭제하는 법 (0) | 2023.02.10 |
---|---|
[git] The following untracked working tree files would be overwritten by merge 에러 해결 (0) | 2022.07.28 |
git의 .gitignore가 적용 되지 않을 때 ! (0) | 2022.07.26 |
git checkout 에러 : Your local changes to the following files 해결 (0) | 2022.04.15 |
커밋 번호로 체크아웃 ( commit number checkout ) (0) | 2022.02.16 |