Git 치트 시트 – $get git
29일차 - Git 치트 시트 – $get git - 29일차
100 days of Cloud on GitHub - Read On iCTPro.co.nz -
편리한 Git 명령
Git은 프로그래머 간의 변경 사항 추적 및 협업으로 유명한 고도로 성숙한 오픈 소스 소프트웨어입니다. Git은 소스 코드 관리를 위한 DevOPS에서 중요한 역할을 합니다.
Git은 속도, 데이터 무결성 및 분산 비선형 워크플로우 지원 면에서 매우 효율적입니다.
기본 힘내 명령
git clone [url]
git init [repository]
git add [filename]
git add .
git commit -m " my first commit"
git status
git log
git diff branch_1 branch_2
git diff branch_1 branch_2
힘내 취소
git revert HEAD^
git reset [file]
git clean -n
힘내 브랜치
git branch
git branch [NameOfBranch]
git branch -a
git branch -d [NameOfBranch]
git merge [NameOfBranch]
git checkout [NameOfBranch]
힘내 태그
git tag [TagName]
git tag -d [TagName]
git push --tags
힘내 원격 저장소
git pull[NameOfBranch] [url]
git fetch [remote_url] [branch]
git pull [remote_url]
git push [remote_url] [BrnaceName]
힘내 삭제
git rm -f [NameOfFile]
git rem -r --cached [NameofDirecotry]
git rm -r -f [NameofFile]
✅저와 연결하세요
🤝🏽에서 나와 연결
🧑🏼🤝🧑🏻 또는 iCTPro.co.nz에서 더 많은 게시물 보기
💻 GitHub에서 나와 연결
아누빈드 산카라빌라삼 팔로우
Experienced Cloud Technology Specialist with a demonstrated skillset of working with Medical Service , NZ Police & Education industry
Reference
이 문제에 관하여(Git 치트 시트 – $get git), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/aws-builders/a-git-cheat-sheet-get-git-2jm3텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)