본문 바로가기

그 외

(22)
[Week2] concise - giving a lot of information clearly and in a few words consistent - acting or done in the same way over time, espacially so as to be fair or accurate. accurate - correct in all details contribute - help to cause or bring about properly - correctly or satisfactorily vicious - deliberately cruel or violent deliberately - consiously and intentionally; on purpose 참고 사이트 https://cbea.ms/git..
[Week1] typically - 전형적으로, 대표적으로, 자주 있는 일이지만, 대체적으로 The HTML element represents an unordered list of items, typically rendered as a bulleted list. permitted - 허락하다, 용인하다, 통과하다 omission - 생략, 빠뜨림, 누락, 탈락 implicit 절대, 맹목적인 은연중에 내포된, 함축적인 alternate between A and B - (사람 상태 등이) A와 B사이를 왔다 갔다 하며 변동한다 the nested lists may alternate between and without restriction. alternate A with(and, by) B - (사물 등) A와 B를 번갈..
[VSC] 저장 시 자동 줄 정렬 Prettier 설정 Prettier을 다운받았으면
[Git&Github] branches vsc 콘솔 이용 중 이전 커밋으로 돌아가는 것은 $ git checkout `해당 commit의 별명` 이다. 새로운 브런치 만드는 콘솔은 $ git checkout -b `branch명`이다. 이전 커밋으로 돌아가는 동시에 이전 커밋을 base로하는 새로운 branch를 만들 수 있다. *한꺼번에 진행 $ git checkout `commit별명` -b`branch명`이다. main branch으로 돌아가기 $ git checkout main branch 목록 보기 $ git branch branch를 콘솔로 삭제하는 방법은 $ git branch -d `branch 명` 마지막 커밋 수정하기 $ git commit --amend -m `message` $ git commit --amend --no-..
[Git&Github] CLI log, commit, push vsc을 이용해서 생성 수정 삭제를 하면 file 옆에 M 표시가 있는데, 이는 해당 파일 내용이 변경(수정)되었다는 것을 의미한다. 새로운 file을 만들면 해당 파일 옆에 U(untracked) 표시가 있는데, 이는 git이 아직 해당 파일을 추적하지 않고 있다는 뜻 즉 git에 등록되지 않았다는 뜻이다. 이후 체크버튼을 클릭하면 자동으로 github으로 commit한다. commit 히스토리는 터미널로 가서 git log라고 입력하면 commit 히스토리가 나온다. push는 터미널에 git push origin main을 입력하면 github으로 push된다. 콘솔로 git을 추가하려면 git add . 을 입력한다. ( .)은 폴더의 뜻이다. 그 다음 git commit -m(다른 항목이 궁금하..
[Git&Github] 깃과 깃허브란2 Github에서 README.md는 해당 repository의 제목과 내용을 알려주는 파일이다. github desktop에서 github으로 파일을 보내기 위해선 commit 후 push origin까지 해줘야 github에서도 반영된다. Forking이란 다른 Repository의 project를 가지고 본인의 repository로 복사하는 것을 말한다. fork 이후 github desktop에서 add -> clone repository를 하면 fork한 repository를 복사하여 자신의 desktop에 있는 것을 확인할 수 있다. 해당 clone 파일을 오리지널 Repository에 업데이트를 원한다면 github에서 New pull request를 눌러주면 된다. owner에게는 Merge..
[Git&Github] 깃과 깃허브란? git은 분산 버전 관리 시스템으로 파일들을 추적하는 방식이다. - 트래킹하여 누가 언제 무엇을 변경 했는지 확인 할 수 있다. github는 사용자가 작업한 git file를 올리는 일종의 저장소이다. - 변경된 파일을 공유하는 방법 Repository git이 볼 수 있는 파일을 말한다. Commit git에 어떤 변경사항이 포착되었을 때 기록 Git은 3가지 Areas를 가지고있다. 1. Working area : 우리가 현재 작업하고 있는 폴더로 생성, 수정, 삭제한 파일들이 있는 디렉토리 2. Staging area : 변경, 수정된 사항을 commit 할 수 있도록 저장하는 곳 3. Repository&Commit area : 파일들이 commit된 곳, 파일들의 변경사항에 대한 스냅샷이 있다..
[2021.10.14] 가경천, 공원 탐조