형상관리/git
git push [create branch, commit, checkout]
Admin_This_Project
2022. 7. 11. 14:09
## create git branch
- git branch {branch_name}
## branch list check
- git branch
## change branch to {branch_name}
- git checkout {branch_name}
## commit all
- git commit --all '{command}'
## push all on commit list
- git push --all
728x90