window github

    [Git] window에서 PowerShell을 사용한 git 처리(1)

    [Git] window에서 PowerShell을 사용한 git 처리(1)

    1) window PowerShell 을 열어주고 2) git user.name과 user.email 환경변수를 입력해줍니다(등록시 이후 안해도됨) git config --global user.name "유저이름" git config --global user.email "유저이메일" 3) 사용할 로컬저장소의 루트주소로 찾아갑니다 4) 로컬저장소 등록 및 커밋하기 git init으로 로컬 저장소를 초기화시켜줍니다 Initialized empty Git repository in /주소가 나오고 여기서 git status를 입력하면 git에 untacked된 파일들이 표시되고 이를 staging에 add해주는 작업이 필요합니다. add하기전에..