Repository 썸네일형 리스트형 git user name, email 변경하기 commit 시 반영되는 user name, email 을 변경할 수 있습니다. 글로벌 설정을 변경하면 모든 git repository 에 대해서 적용되며, clone 한 git repository 폴더에서 개별 설정할 수 도 있습니다. 1. 전체 git repository 에 대한 글로벌 설정으로 user name, email 설정 git config --global user.name "dante2k" 위의 명령어로 user name 을 설정할 수 있습니다. git config --global user.email "dante2k@email.com" 위의 명령어로 user email 을 설정할 수 있습니다. 2. 단일 git repository 에 대한 설정으로 user name, email 설정 설정을.. 더보기 ubuntu google chrome repository 추가 구글링하면 나오긴 하지만, 좀 중구난방이라서 정리해 놓습니다. repository 추가를 위해서는 2가지 작업이 필요한데, key 설치, respository 추가 2가지입니다. 1. apt-key 추가 wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - 2. repository 추가 sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' 3. apt 업데이트 sudo apt update 4. chrome 안정버전 설치 sudo a.. 더보기 이전 1 다음