[git bash] git bash 사용 방법 - add, commit, push, pull 1. git이 연결된 프로젝트 파일로 들어간다. (.git이 있는 파일까지 들어가야함) cd /c cd subProject(본인 프로젝트) 2. push하는 방법 git add . git commit -m "커밋 메세지" git pull origin develop --rebase git push origin develop 3. pull하는 방법 git pull origin develop TIL/Git 2023.08.13
[GitHub] 📁GitHub Desktop 설치 및 사용법 GitHub Desktop이란❔ Windows에서도 Git소스를 GUI(그래픽 유저 인터페이스) 방식으로 쉽게 사용할 수 있게 만든 Tool입니다. 다운로드 및 설치 https://desktop.github.com/ 사이트에 접속 후 OS에 맞는 파일을 다운 받습니다. 다운 받은 파일을 더블클릭해서 실행해줍니다. "Sign into GiHub.com"을 클릭하면 로그인 페이지로 이동합니다. "continue with browser"를 클릭하여 로그인 해줍니다. 기존에 github.com에서 생성한 repository를 내 컴퓨터로 clone해줍니다.(clone = 복사해오는 과정) Clone a repository from the internet: 특정 repository에서 소스를 복사하여 가져옵니다... TIL/Git 2022.01.28