Git Commit Convention - seowonintech/react-native-todo-list GitHub Wiki
์๋ ์ฐธ๊ณ ์ฌ์ดํธ๋ฅผ ์์ฝํ์์.
- ํ๊ธ ์ข์ git ์ปค๋ฐ ๋ฉ์์ง๋ฅผ ์์ฑํ๊ธฐ ์ํ 7๊ฐ์ง ์ฝ์ - ๋ค์ด๋ฒ ํ ์คํธ ๋ฐ์
- ์๋ฌธ How to Write a Git Commit Message
- 50์ ์ด๋ด์ ์์ฝ ๋ฌธ์ฅ
- ๋น ์ค ํ๋
- ์ค๋ช ๋ฌธ
์ ๊ฐ์ด๋๋ฅผ ๋ฐ๋ฅด๋ฉด ์๋ ๋ช ๋ น์ด๋ฅผ ์ด์ฉํ ๋ ๋ณด๊ธฐ ํธ๋ฆฌํจ. + git์์ ์ถ์ฒํจ
git log --oneline
git shortlog
git Built-in Convention์ ๋ฐ๋ฅธ๋ค.
Good
- (If applied, this commit will) Refactor subsystem X for readability
Bad
- (If applied, this commit will) Fixed bug with Y
์ข์ ์
commit eb0b56b19017ab5c16c745e6da39c53126924ed6
Author: Pieter Wuille \<[email protected]\>
Date: Fri Aug 1 22:57:55 2014 +0200
Simplify serialize.h's exception handling
Remove the 'state' and 'exceptmask' from serialize.h's stream
implementations, as well as related methods.
As exceptmask always included 'failbit', and setstate was always
called with bits = failbit, all it did was immediately raise an
exception. Get rid of those variables, and replace the setstate
with direct exception throwing (which also removes some dead
code).
As a result, good() is never reached after a failure (there are
only 2 calls, one of which is in tests), and can just be replaced
by !eof().
fail(), clear(n) and exceptions() are just never called. Delete
them.
์๋ ๋ฌธ๋ฒ์ผ๋ก ์ปค๋ฐ ๋ฉ์ธ์ง๋ฅผ ๋จ๊ธฐ๋ฉด default branch(master)์ ํธ์ ๋ ๋ ์ด์ ๋ซํ.
ํค์๋ #์ด์๋ฒํธ
- close
- closes
- closed
- fix
- fixes
- fixed
- resolve
- resolves
- resolved
close๊ณ์ด : ์ผ๋ฐ ๊ฐ๋ฐ ์ด์ fix๊ณ์ด : ๋ฒ๊ทธ ํฝ์ค, ํซ ํฝ์ค ์ด์ resolve : ๋ฌธ์, ์์ฒญ ์ฌํญ์ ๋์ํ ์ด์
# ์ ๋ชฉ์ ์ด์ ํ ๊ฐ ๋ซ๊ธฐ๋ฅผ ์ ์ฉํ ์ฌ๋ก
Close #31 - refactoring wrap-up
* This is wrap-up of refactoring main code.
* main.c
* removed old comments
* fixed rest indentations
* method extraction at line no. 35
# ๋ณธ๋ฌธ์ ์ด์ ์ฌ๋ฌ ๊ฐ ๋ซ๊ธฐ๋ฅผ ์ ์ฉํ ์ฌ๋ก
Update policy 16/04/02
* This closes #128 - cab policy, closes #129 - new hostname, and fixes #78 - bug on logging.
* cablist.txt: changed ACL due to policy update delivered via email on 16/04/02, @mr.parkyou
* hostname.properties: cab hostname is updated
* BeautifulDeveloper.java: logging problem on line no. 78 is fixed. The `if` statement is never happening. This deletes the `if` block.