Linux
-
gcc 설치 및 사용법언어/C 2020. 1. 13. 12:31
리눅스에서 C언어 개발 환경을 구축하기 위해 gcc를 사용해본다. 1. 설치 보통 우분투를 설치하면 gcc는 설치되어있다. 아래의 명령어를 통해 설치여부를 확인해보자. gcc output: gcc: fatal error: no input files compilation terminated. 이렇게 나오면 설치되어 있는 것이다. 버젼을 확인해보자. gcc --version output: gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0 Copyright (C) 2017 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not e..
-
git 사용시 자동으로 로그인 하는 방법개발 환경/Ubuntu 2020. 1. 12. 00:47
코드를 수정후 github에 push할 때마다 로그인하는 것은 매우 귀찮아서 찾아보았다. $ git config credential.helper store $ git push https://github.com/HanSeokhyeon/hanseokhyeon.github.io.git Username for 'https://github.com': HanSeokhyeon Password for 'https://HanSeokhyeon@github.com': Everything up-to-date출처 : https://franzpark.github.io/git-permanent-authentication/