Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions python_poetry_template/main.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 2022. 01. 01. printer 함수 추가함
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

버전 관리자에서 수정 내역을 기록하고 있기 때문에 직접 주석으로 작성한 수정 내역은 필요 없어요. 버전 관리자에서는 파일을 라인 별로도 추적이 가능하기 때문에, 연규님의 "명확한 히스토리 기록"이라는 의도와 달리, 오히려 이런 주석은 햇갈림을 유발할 수 있어요. 수정 내역 관리는 git 을 열심히 활용중인데, 주석은 제거하고 git blame 같은 명령을 사용해보는것은 어떨까요?


def printer():
print('Hello, world!')

def main():
printer()

Expand Down