티스토리 뷰

Programming

create git branch

seoca 2021. 2. 27. 15:13

 

git status //check the git status
git pull origin 'branch이름'

git checkout -b "branch name" // with '-b', you can create a new branch and checkout at the same time

git add .
git commit -m "message"
git push origin 'branch이름'

 

git checkout master

git pull

 

'Programming' 카테고리의 다른 글

map vs forEach  (0) 2022.08.15
git remote 변경  (0) 2021.03.06
delete git repository  (0) 2020.11.27
cross-env 설정은 development로 해야한다.  (0) 2020.06.23
git the requested URL returend error : 403  (0) 2020.02.17