[Git] 과거 'commit' Author (작성자) 변경하기 (잔디밭 표시 안될 때)
문제 확인> 회사 계정과 개인 계정을 한 랩탑에서 사용중이라 user 정보가 꼬여서 개인 계정 정보가 회사 계정 정보로 바꿔쳐져 잔디밭이 표시가 되지 않았다. 해결 방법> 블로그로 ㄱㄱ https://madplay.github.io/post/change-git-author-name git commit author 변경 (커밋 작성자 이름 변경하기) committer를 잘못 입력하여 push까지 해버렸다. 커밋 작성자의 이름을 다시 바꿀 수 있을까? madplay.github.io
- Program Language/Git
- · 2020. 7. 21.
[JAVA] 정규식
* 정규식을 사용하면 문자인지, 숫자인지, 특수문자 인지 등등의 경우를 판단 할 수 있다.* 안드로이드에서 리스트 검색하기 구현할 때 '환자이름', '환자번호'를 판단해 검색할 때 사용했다.ex) //검색어가 환자번호 또는 환자이름인지 판독 private boolean isPatNameSearched(String search_word) { if (search_word.matches("\\d+(?:\\.\\d+)?")) { return false; } else { return true; } } * 참고 사이트http://highcode.tistory.com/6
- Program Language/Java
- · 2018. 7. 25.
[Python] Pip Update 에러
https://stackoverflow.com/questions/39908406/unable-to-locate-finder-for-pip-vendor-distlib-error-when-using-pip-instal
- Program Language/Python
- · 2018. 2. 23.
[Python] Pip install
https://www.makeuseof.com/tag/install-pip-for-python/
- Program Language/Python
- · 2018. 2. 23.