CS/OS2 [Git] git contribute process Process 기존 Repository에 기여하고 싶을 경우 해당 Repo를 fork,clone 하여 파일 수정 후 push한다. [browser]기여에 참여할 원본 Repository fork [browser]본인 계정에 생성된 Repository의 주소 복사 터미널에서 clone 하여 Local Repository 생성 $ git clone https://github.com/UserName/gitAdress 수정 혹은 변경할 파일 Local Repository에 작성 해당 파일 Staging Area에 add $ cd $ git add Remote Repository에 커밋 $ git commit -m "commit message" 본인 계정 Remote Repository에 push $ git pu.. 2022. 7. 1. [Linux] CLI 기본 명령어 기본 명령어 ls : 현재 위치의 파일 목록 조회 cd : 해당 디렉토리로 이동 touch - 0바이트 파일 생성, 파일의 날짜와 시간을 수정 mkdir - 디렉토리 생성 cp - 파일 복사 mv - 파일 이동 rm - 파일 삭제 cat - 파일의 내용을 화면에 출력, 리다이렉션 기호('>')를 사용하여 새로운 파일 생성 redirection - 화면의 출력 결과를 파일로 저장 alias - 자주 사용하는 명령어들을 별명으로 정의하여 쉽게 사용할 수 있도록 설정 명령어 옵션 2022. 7. 1. 이전 1 다음