git3 매일 git update mogilalia@S12 MINGW64 cd Server\ Bckup/bckup/mogibu_wp mogilalia@S12 MINGW64 /d/Server Bckup/bckup/mogibu_wp (main) $ git status On branch main Your branch is up to date with ‘origin/main’. Changes not staged for commit: (use “git add/rm …” to update what will be committed) (use “git restore …” to discard changes in working directory) deleted: wp_actionscheduler_actions.ibd deleted: wp_actionsch.. 2024. 5. 21. Git 명령어 일람 출처 https://hackmd.io/@oW_dDxdsRoSpl0M64Tfg2g/ByfwpNJ-K Git 설치 & 환경설정 Git 설치하기 : https://git-scm.com/ 설치 완료 후 Git bash 열기 git bash 에서 환경설정 하기 Step 1 : 유저이름 설정 git config --global user.name "mogibu" Step 2 : 유저 이메일 설정하기 git config --global user.email "mogibu@gmail.com" Github가입시 사용한 이메일을 써주세요! Step 3 : 정보 확인하기 git config --list Github에 처음 코드 업로드하기 초기화 git init 추가할 파일 더하기 git add . .(점) 은 모든 파일이라는 .. 2024. 4. 4. 버전 관리 Git 버전 관리 시스템 github.com 서비스를 통해 소스코드를 관리 1. 터미널을 열고 Git을 설치sudo apt-get install git 2. 자신을 Git에 등록git config --global user.name "mogibu" git config --global user.email "mogibu@gmail.com" 3. 버전 관리할 디렉토리로 이동cd /var/www/html/mogibututorials/ git init Initialized empty Git respository in /var/www/html/mogibututorials/.git/ 가 출력되면 버전 관리가 시작된 것임 4. 아래의 명령으로 현재의 버전 관리 상태를 체크git status Untracked files:.. 2015. 11. 21. 이전 1 다음