Tools

Git Basic

namhj 2019. 12. 4. 14:19
반응형

git init (대상 폴더 initialize)


git remote add origin {Repo URL} (저장소와 연결)


git pull origin master
git add .
git commit -m "commit msg"
git push origin master

init -> initialize
remote -> pointing git repository
add . -> add changed
commit
push

반응형