Git & Github &eclipse
git 파일 올릴때
현규띠
2022. 7. 25. 02:20
git 처음 파일올릴때 순서
1.git remote add origin git주소
2.git add .
3.git commit -m "메세지"
4.git checkout -b branch주소
5.git push -u(유저의) origin(origin remote repository의) branch주소
git 두번째부터
1.git add .
2.git commit -m "메세지"
3.git checkout -b branch주소
4.git push -u(유저의) origin(origin remote repository의) branch주소