AWS/EC2
[aws-ec2] git이랑 연동하기
Dev갱이
2021. 7. 9. 00:37
728x90
sudo yum install git
명령어로 git설치하기
git --version
깃버전 확인하기
cd 프로젝트쪽으로간뒤 README.md생성후
touch README.md
git init
git add .
git commit -m "코멘트"
git branch -M master
git remote add origin 깃저장소주소
git push -u origin master
/* 깃허브에서 제공해주는 예시코드*/
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin 깃저장소주소
git push -u origin main
728x90