[Git]원격 리포지토리 송신
■ 원격 리포지토리 송신 ▶ 원격 리포지토리 등록: 로컬 리포지토리의 원격 리포지토리로 등록 할때는 git remote add 명령어 사용git remote add origin git@github.com:[사용자ID]/[레포지토리이름] [github 사이트에서 확인할 수 있는 가이드]// push an existing repository from the command linegit remote add origin https://github.com/semiguy/android-example.gitgit push -u origin master //create a new repository on the command lineecho "# android-example" >> README.mdgit initgit..
Software Engineering
2016. 4. 24. 16:43