<aside> 💡 The commit type can include the following:
feat
– a new feature is introduced with the changes
fix
– a bug fix has occurred
chore
– changes that do not relate to a fix or feature and don't modify src or test files (for example updating dependencies)
refactor
– refactored code that neither fixes a bug nor adds a feature
docs
– updates to documentation such as a the README or other markdown files
style
– changes that do not affect the meaning of the code, likely related to code formatting such as white-space, missing semi-colons, and so on.
test
– including new or correcting previous tests
perf
– performance improvements
ci
– continuous integration related
build
– changes that affect the build system or external dependencies
revert
– reverts a previous commit
</aside>
모든 명령어는 선택지가 1개밖에 없을 경우 Tab 키를 누르면 자동으로 완성된다.
선택지가 여러개일 경우 Tab 키를 2번 누르면 명령어들이 출력된다.
git rm --cached -r .idea/
git config —global core.editor "notepad++"
깃 메인편집기를 노트패드++로 변경
git config --global core.editor "C:/Program\\ Files/Vim/vim91/gvim.exe"
깃 메인편집기를 gvim으로 변경