git basic으로 스윙하기
당신의 자식 검을 그립니다
참고- git 명령을 이해하는 것으로 시작합니다.
git remote -v
git remote add origin --remote repo URL--
git remote set-url origin --remote repo url--
메모
git config --global user.name "Abhishek Sharma"
git config --global user.email "[email protected]"
git commit --amend --author="Abhishek Sharma <[email protected]>"
git 앞에 무릎 꿇기
저장소를 복제하려면
git clone --remote repo url--
분기 생성
git checkout -b _branchname_
git checkout -b _branchname-1 _
git checkout _branchname_
git status
git add filename, filename2
모든 파일을 한 번에 추가하려면
git add .
git commit -m "commit message"
오리진에서 변경 사항을 푸시하려면
git push origin _branchname_
git checkout _branchname-2_
git pull origin master
git merge branchname-2
git push origin branchame-2
분기 삭제
git branch -d _branchname_
git push origin --delete _branchname_
git은 절대 잊지 않습니다. 다른 사람들이 당신의 실수를 찾고 당신을 비난하는 데 도움이 될 것입니다.
git log
git log --oneline
커밋 세부정보
git show commitID (hashcode)
e.g. git show 785767e
git show HEAD
git show HEAD~1
git show HEAD~2
예를 들어 회사의 실제 git 프로세스를 이해합시다.
mkdir git-basic
cd git-basic
이 리포지토리에는 하나의 브랜치 -마스터만 있습니다.
git checkout -b dev
touch git-basic.txt
git status
git add git-basic.txt
git commit -a "first git commit"
git checkout master
git remote add origin -- remote repo url--
git pull origin master
git merge dev
git push origin master
희망, 당신은 내 게시물을 좋아합니다!
감사,
아비섹 샤르마
Reference
이 문제에 관하여(git basic으로 스윙하기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/imabtiwari/swing-with-git-basic-34fp텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)