소스 제어라고도 하는 버전 제어는 파일 변경 사항을 추적하고 관리하는 방법입니다. 버전 제어 시스템은 나중에 버전을 기록할 수 있도록 시간이 지남에 따라 파일의 변경 사항을 기록하는 시스템입니다. 널리 사용되는 버전 제어 시스템 중 일부는 널리 사용되는 제어 시스템/소프트웨어인 Git입니다.
이제 git으로 넘어가자…
Git은 컴퓨터 파일의 변경 사항을 추적하는 데 사용되는 버전 관리 시스템입니다. Git은 코드 변경 추적, 변경자 추적, 코딩 협업에 사용됩니다. git을 시작하려면 먼저 로 이동하여 소프트웨어를 다운로드하고 설치해야 합니다.
자, 이제 GitHub로 이동해보겠습니다
GitHub는 버전 관리 및 협업을 위한 코드 호스팅 플랫폼입니다. 이를 통해 귀하와 다른 사람들은 어디에서나 프로젝트를 함께 작업할 수 있습니다. GitHub를 사용하려면 계정에 접속하여 가입해야 합니다
재밌어지죠? 이제 오늘의 주요업무로 넘어가겠습니다
Git 작업 흐름
이제 작업 디렉터리의 파일에는 세 가지 상태가 있습니다.
스테이징 가능: 이는 파일에 대한 모든 업데이트를 스테이징하고 커밋할 준비가 되었음을 의미합니다.
수정 가능: 여기서는 파일에 대한 변경 사항이 아직 로컬 저장소(약식 repo)에 저장되지 않았다는 것을 의미합니다.
커밋 가능: 파일에 대한 변경 사항을 로컬 저장소에 저장할 수 있습니다.
더욱 흥미로워지길 바랍니다. 걱정하지 마십시오. 아직 시간이 남아 있습니다. 계속 배워봅시다!
이제 기본적인 git 명령어를 배워봅시다
$ git init
이렇게 하면 git이 폴더를 인식하게 됩니다.
$ git status
스테이징되거나 수정될 파일의 상태가 표시됩니다.
$ git add
이렇게 하면 작업 디렉터리에 있는 파일이 준비 영역에 추가됩니다.
$ git commit
이 작업은 코드 베이스를 추적하는 것입니다. 기본적으로 Staged 된 모든 파일을 로컬 Repository에 추가하는데 사용됩니다.
$ git push
이는 코드를 로컬 컴퓨터에서 GitHub로 푸시하는 데 사용됩니다. 여기서 로컬 저장소에 커밋된 파일은 모두 원격 저장소로 이동됩니다.
$ git fetch
원격 저장소에서 로컬 저장소로 파일을 가져오는 데 사용됩니다.
$ git merge
로컬 저장소의 파일을 작업 디렉터리로 가져오는 데 사용됩니다.
$ git pull
원격 저장소의 파일을 작업 디렉터리로 가져오는 데 사용됩니다. git fetch와 git merge의 공동 작업을 수행합니다. 따라서 git fetch 및 git merge를 수행하는 대신 간단히 git pull을 수행할 수 있습니다.
자, 너무 지루하게 만들지 말자. 다음 몇 단계만으로 첫 번째 저장소를 만들어 보세요
1단계: Git 허브 계정 만들기
이 링크를 클릭하고 링크를 만드세요. 이미 가지고 계시다면 2단계 지니로 넘어가주세요.
2단계: 컴퓨터에 git이 설치되어 있는지 확인
이렇게 하려면 다음 명령을 입력하세요.
$ git -- version
이미 Git이 있는 경우 설치된 버전이 표시됩니다.
3단계: 신원 설정
사용자 이름과 이메일 주소를 설정하세요. 이 정보는 매우 중요합니다. 왜냐하면 커밋을 할 때마다 git은 여러분의 신원(사용자 이름과 비밀번호)을 사용하고 이 정보가 여러분이 생성하기 시작한 커밋에 불변으로 적용되기 때문입니다. 이를 달성하려면 다음 명령을 입력하십시오.
$ git config –global user.name “Rose Abuba” $ git config –global user. Email “roseabuba@outlook.com $ git config --global –list # to check the data provided
4단계: 저장소 생성
GitHub에 새 저장소를 만듭니다. GitHub 계정으로 이동하고 새 버튼을 클릭하고 저장소 생성을 선택하여 새 저장소를 만듭니다(원하는 대로 저장소 이름을 지정할 수 있습니다). 이 작업을 수행하면 새 저장소 또는 기존 저장소를 푸시하기 위한 옵션 목록이 표시됩니다.
5단계: 폴더 및 파일 만들기
이제 파일을 만들고 원하는 코드 편집기로 엽니다. 그런 다음 터미널을 엽니다. 터미널에서 파일을 생성하려면 아래 명령을 입력하세요.
$ touch Index.html
6단계: git 초기화
아래 명령을 입력하면 됩니다
$ git init
7단계: 커밋을 위한 파일 준비
다음 명령을 입력하세요:
$ git add .
이렇게 하면 로컬 저장소의 모든 파일이 추가되고 커밋을 위해 준비됩니다.
$ git add Index.html
특정 파일을 추가하려면 파일을 커밋하기 전에 파일 상태를 확인해 봅시다
$ git status
Step 7: Commit changes to your git Repository
$ git commit -m "First Commit"
Add a remote origin and Push
To update the changes you have made to the main branch because it won’t be automatically updated on Git hub. All those changes are in the local Repository.
$ git remote add origin remote_repository_URL
To list connections with other repositories, type the following commands:
$ git remote -v
This will list the URLS of the remote connections you have with other repositories
Step 9: Push Changes made from your local repository to the remote repository.
Type the following command:
$ git push -u origin main #pushes changes to origin
The next thing is to refresh. If you followed the above steps, you will see that your codes have been successfully pushed to GitHub.
HI Genie! If you followed up this far, You are one step to Collaboration! People can now view your code online. All you need to do is to share your repo link and you are good to go!
Note that each time you make changes on your local repository and you want it to reflect on your Github, These following commands are the most common command flow used.
$ git add . $ git status $ git commit -m "Second Commit" $ git push -u origin main
In case you want to work with other people’s repositories on Github, you can clone their repos. To do this, type the following commands.
$ git clone remote_repository_URL
Now let’s move to collaboration
When you work with a team, That is, for example, a group of developers working on a project. Each time you make a change and push it into the main repo, your colleagues have to pull those changes that you pushed into the git repo. Simply put it this way. To keep up with updates and the latest changes on the git repo, all you need is a git pull command. To achieve this, type the following commands.
$ git pull origin main
OR
$ git fetch AND $ git merge
git pull is equilavent to git fetch and git merge
Lastly, let me teach you the basic things you need to know about Branches
$ git branch develop
This creates a new branch called the develop
$ git branch
This shows a list of branches already created
$ git checkout develop
This automatically moves to the branch develop
These are just the basic things you need to know about Git and GitHub. Stay tuned for more articles on how to use git and GitHub.
…And always remember, in case of fire, Do these 3 things;
Git commit
Git Push
Leave Building
Okay, Byeeeee………
위 내용은 단 몇 분 만에 Git 및 GitHub의 필수 사항을 마스터하세요의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!