Git 사용법 정리
아래 그림은 버전을 관리하는 것의 플로우를 보여주는 것이다.
아래 그림은 버전을 관리하는 것의 플로우를 보여주는 것이다.
git init [project_name]
git clone [url]
git status
git diff
git log
git branch
git branch -av
git checkout <branch>
git branch <new_branch>
git branch -d <branch>
git checkout --track <remote/branch>
git branch -u <remote/branch>
git tag <tag-name>
git add [filename]
git add .
git commit -m "write Commit Message HERE"
git commit -a
git commit --amend
git reset --hard HEAD
git revert <commit>
git fetch <remote>
git pull <remote> <branch>
git pull --rebase
git push
git push --tags
git merge <branch>
git rebase <branch>
git stash
git stash pop
git stash list
[Git] 기본적인 Git 사용법 - Git 명령어 (0) | 2021.01.14 |
---|