git 사용법: 초보자가 알아야 할 git 명령
7686 단어 gitcheatsheettutorialbeginners
다음은 git으로 작업할 때 매일 사용할 수 있는 몇 가지 명령을 나열한 것입니다.
1) 현재 사용자 이름과 이메일을 변경하는 방법
git config --global user.name [Your username]
git config --global user.email [Your email]
자세한 정보: git config -help
2) 기존 프로젝트를 복제하는 방법
저장소로 이동하여 '복제 또는 다운로드'를 클릭하고 저장소 링크를 복사합니다.
리포지토리를 복제해야 하는 디렉터리로 이동합니다.
git init // Create an empty Git repository or reinitialize an existing one
git clone 'https://github.com/gitrepo/repo.git' //Clone a repository into a new directory
3) 모든 지점을 나열하는 방법
git branch // list all branches of the local repo. Branch with asterisk denotes current branch
git branch -a // list all branches of the local and remote repo
자세한 정보: git branch -help
4) 다른 지점으로 전환하는 방법
git checkout [branch name] //switches to the desired branch of your repository
자세한 정보: git checkout -help
5) 준비 상태에 파일을 추가하는 방법
git add . //adds all changed files to the staging state
git add [file 1] [ file 2] ... [file n] //adds multiple files to staging
자세한 정보: git add -help
6) Staged 파일 커밋 방법
git commit -m [commit message]
자세한 정보: git commit -help
7) 리포지토리에 변경 사항을 푸시하는 방법
git push
자세한 정보: git push -help
8) 변경 사항을 임시로 저장하고 나중에 불러오는 방법
git stash // all uncommitted local changes have been saved
git stash pop // The "pop" flag will reapply the last saved state
자세한 정보: git stash -help
9) 새 브랜치를 생성하고 원격으로 푸시하는 방법
git checkout master // checkout to the master branch
git pull // pulls the latest change from the master if any
git checkout -b [branch name] // creates a branch locally
git push -u origin [branch name] // pushes the branch to remote
10) 로컬 및 원격 브랜치 삭제 방법
참고:삭제하려는 지점에 있는 경우 다른 지점으로 체크아웃하십시오.
git branch -d [branch name] // deleted branch locally
git push origin --delete [branch name] deletes the branch of remote
11) 로컬 및 원격 브랜치 이름 변경 방법
git branch -m [old-name] [new-name] // renames branch locally
git push origin: [old-name] [new-name] // renames the branch of remote
12) 로컬 프로젝트를 원격으로 업로드하는 방법
프로젝트 폴더의 루트로 이동
git init
git add .
git commit -m "commit message"
git remote add origin [url]
git push -u origin master
오타는 무시해 주시고 이 게시물을 더 나은 게시물로 만들기 위한 제안을 환영합니다.
Reference
이 문제에 관하여(git 사용법: 초보자가 알아야 할 git 명령), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/ezhurik/how-tos-of-git-git-commands-you-should-know-as-a-beginner-4f9o텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)