깃명령어를 간소화할수있다.
commit.sh
# main,test에 자동 커밋푸시
# 실행: git bash에서 경로+파일명 예) ./commit.sh
git checkout main
git pull --rebase
git push
git checkout test
git pull --rebase
git merge main
git push
반응형
'Network&etc > Git&Github' 카테고리의 다른 글
[실무] 자주쓰는 git 명령어 모음 (0) | 2023.08.31 |
---|---|
git-credentials으로 서버 permissions 변경 혹은 확인 (0) | 2023.03.09 |
[git] remote: HTTP Basic: Access denied 해결 (0) | 2022.07.16 |
git discard 복구하기 (0) | 2022.07.04 |
git stash로 commit안하고 잠깐 다른곳에 저장하기 (0) | 2022.06.22 |