반응형
git 신규 Reository를 만들면 다음과 같은 문구들을 볼 수 있습니다.
echo "# testtest" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M master
git remote add origin git@github.com: ~~~~
git push -u origin master
or
git remote add origin git@github.com:~~
git branch -M master
git push -u origin master
이를 통하여 remote repository에 데이터 관리를 시작할 수 있습니다. (사실 repository 만들면 나타나는 문구들 입니다.)
반응형
'2023년 이전 > git' 카테고리의 다른 글
gitignore 파일 생성 (0) | 2020.09.06 |
---|---|
원격 저장소 연결하기 (0) | 2020.05.17 |
Git - remote 저장소 만들기 (0) | 2020.01.03 |