git & 리눅스 우분투
github에 커밋하기$ git config --global user.name "github 사용자 이름" $ git config --global user.email "깃허브 계정" $ git config --listuser.name= github 사용자 이름 user.email= 깃허브 계정 core.editor=vim $ mkdir workspace //디렉터리 생성$ cd workspace/ $ git clone 깃허브 주소 (ex) https://github.com/ssjjss1/hello_test.git/.Cloning into 'hello_test'... remote: Enumerating objects: 3, done. remote: Counting objects: 100% (3/3), do..
2024.07.08