Git 명령어1. git 초기설정git 초기화git init복제git clone 레포지토리 주소예) git clone https://github.com/Kanaries/pygwalker.git연결git remote add origin 레포지토리주소예) git remote add origin https://github.com/Kanaries/pygwalker.git연결 확인git remote -v 2. 상태 관리파일 현재 상태 확인git status파일 트랙킹git add 파일 경로예) git add src/router/root.jsx커밋(로컬에 저장)git commit -m "커밋 메시지"푸쉬(로컬에 저장된 것 원격에 올리기)로컬 브랜치명 그대로 원격 브랜치로 올릴 때- git push -u origi..