Git&GitHub

·Git&GitHub
해당 repository의 settings → Actions → General → Workflow permissions에서 Read and write permissions를 체크하면 된다.  아래 링크를 참고하였다. https://stackoverflow.com/questions/73687176/permission-denied-to-github-actionsbot-the-requested-url-returned-error-403 Permission denied to github-actions[bot]. The requested URL returned error: 403I want to push files into the current repository using Github Actions. I've w..
·Git&GitHub
https://www.coursera.org/learn/introduction-git-github Introduction to Git and GitHubGoogle에서 제공합니다. In this course, you’ll learn how to keep track of the different versions of your code and configuration files using a popular ... 무료로 등록하십시오.www.coursera.org branch특정 커밋을 가리키는 포인터, 각 브랜치는 프로젝트의 개발 히스토리에서 최신 커밋을 나타낸다.master branch는 프로젝트의 안정된 상태를 나타내며, 새로운 기능을 개발할 때마다 새로운 브랜치를 생성하여 작업한다.각 브랜치에서의 작업..
·Git&GitHub
Introduction to Git and GitHubGoogle에서 제공합니다. In this course, you’ll learn how to keep track of the different versions of your code and configuration files using a popular ... 무료로 등록하십시오.www.coursera.org  변경 사항 되돌리기git checkout 스테이징되지 않은 파일의 변경사항을 되돌릴 수 있다.파일을 마지막 스토리지 스냅샷으로 되돌린다. git reset스테이징된 변경 사항을 되돌려야 하는 경우 사용할 수 있다.add의 반대 기능add : 변경 사항을 스테이징 영역에 추가reset : 스테이징 영역에서 변경 사항 제거 커밋 수정하기git co..
·Git&GitHub
Introduction to Git and GitHubGoogle에서 제공합니다. In this course, you’ll learn how to keep track of the different versions of your code and configuration files using a popular ... 무료로 등록하십시오.www.coursera.org  git commit -a기본적인 Git 워크 플로우 : make changes -> stage them -> commit them현재 변경 사항이 커밋하고자 하는 것이면 스테이징 단계를 건너뛰고 직접 커밋할 수 있다. 추적된 파일의 변경 사항을 스테이징하고 한 번에 커밋 => git add 단계를 건너뛴다. 스테이징 영역을 건너뛰므로 커밋을 생..
·Git&GitHub
Introduction to Git and GitHubGoogle에서 제공합니다. In this course, you’ll learn how to keep track of the different versions of your code and configuration files using a popular ... 무료로 등록하십시오.www.coursera.org  Git  기본 설정VCS는 누가 어떤 변경을 했는지 추적하는데 이 작업을 위해 Git에게 나를 알려줘야 한다.git config --global user.email "me@example.com"git config --global user.name "My name"  git config 명령어를 사용하고 이메일과 이름을 설정--global : 사..
·Git&GitHub
Introduction to Git and GitHubGoogle에서 제공합니다. In this course, you’ll learn how to keep track of the different versions of your code and configuration files using a popular ... 무료로 등록하십시오.www.coursera.org VCS파일에 대한 변경 사항을 추적한다.변경 사항이 언제, 누구에 의해 만들어졌는지를 알 수 있다. 또한 잘못되었을 경우, 쉽게 변경을 되돌릴 수 있다.변경 사항을 저장할 때 생성되는 모든 다른 버전을 추적한다.여러 파일을 편집하고 그 편집 사항을 하나의 변경으로 취급할 수 있는 커밋(commit)으로 만들 수 있다. 커밋 작성자는 변경 사항이 ..
G.H
'Git&GitHub' 카테고리의 글 목록