Tool/Git

· Tool/Git
명령어 사용법 $ git log -p ##예시 $ git log -p test.py git log 문서 메뉴얼 Browsing revisions The git-log[1] command can show lists of commits. On its own, it shows all commits reachable from the parent commit; but you can also make more specific requests: $ git log v2.5.. # commits since (not reachable from) v2.5 $ git log test..master # commits reachable from master but not test $ git log master..t..
기록으로 만드는 행운
'Tool/Git' 카테고리의 글 목록