본문으로 바로가기

Git commands

category Studies 2022. 1. 15. 00:28

| Git add ~ push

git init
git branch -m master
git remote add origin "github.com/your_ropo.git"
#private 일경우
git remote add origin "[personal-access-token]@github.com/your_ropo.git"

git add .
git commit -m "first commit"
git push -u origin master

| Authentication

git config --global user.name "your name"
git config --global user.email youremail@example.com

비밀번호는 토큰을 사용하며, Github developer setting 에서 발급 받을 수 있습니다.

 

| 브랜치 이름 변경 되었을 때

git branch -m main master
git fetch origin
git branch -u origin/master master
git remote set-head origin -a

 

| 깃 커밋 히스토리 삭제하고 싶을때

git reset HEAD^~n #n은 삭제하고 싶은 횟수
git add ~ git commit
git push -f