728x90 MAC3 [GitHub] terminal에서 git 실행하기 - 재커밋 후 기록 1. git을 사용할 폴더 경로로 터미널 열기 2. git status를 통해 변경사항 확인하기 빨간색으로 표현된 것은 아직 add를 하지 않았다는 표시 3. git add 해주기 파일 하나씩 실행하기 위해 git add "file name" 으로 실행 초록색 - commit 준비 완료 빨간색 - add도 된 상태가 아님 = commit할 수 없음 4. Commit git commit -m "python example - stack" add된 파일만 commit되었다. 5. Push git push -u origin main 2023. 3. 21. [GitHub] terminal에서 git 실행하기 - first commit 기록 1. repository 생성하기 2. git을 사용할 폴더에서 터미널 열기 3. git init 현재 경로의 디렉토리를 git 저장소로 설정 및 초기화 해주는 명령어 4. git add --all git이 올릴 파일을 추적하기 위하여 commit을 하기전에는 반드시 add를 해주어야 한다. 파일을 수정하긴 했지만 commit하지 말아야 하는 경우에는 add를 하지 않으면 된다. git add . → 모든 파일 git으로 관리 git add "file name" → 특정 파일만 관리 5. git status 현재 상태 확인하는 명령어 초록색 : add는 되어있으나 commit은 되지 않은 상태 6. git commit -m "commit message" 7. git remote add origin "gi.. 2023. 3. 20. [C언어] MAC에서 Visual Stdio Code로 C언어 실행하기 1. Visual Stdio Code - mac 전용으로 설치 https://code.visualstudio.com/download Download Visual Studio Code - Mac, Linux, Windows Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. Download Visual Studio Code to experience a redefined code editor, optimized for building and debugging modern web and cloud applications. code.visualstudio.com 2. 확장팩 설치 3. 컴파일러.. 2023. 3. 13. 이전 1 다음 728x90