UTF-8로 세팅해서 로드데이터 하는 방법(한글을 위해!)
python load data character set
>>> json_string = json.dumps("ברי צקלה", ensure_ascii=False).encode('utf8')
>>> json_string
b'"\xd7\x91\xd7\xa8\xd7\x99 \xd7\xa6\xd7\xa7\xd7\x9c\xd7\x94"'
>>> print(json_string.decode())
"ברי צקלה"
git reset HEAD^
git reset --mixed HEAD^
git reset --mixed {commit_id}
모두 동일함
append(): 끝부분에 삽입
prepend(): 시작 부분에 삽입