# Gitlab Note ## Build new project and branch 1. Create new project on Gitlab web 2. git clone ssh://git@xxx.xxx on local 3. cd new_project 4. Add some data 5. git add . 6. git commit -m "First commit" 7. git push origin master 8. Create new branch(test) from master on Gitlab web 9. git checkout -b test 10. git pull origin test