캠프샵에 오신 것을 환영합니다! 무료로 캠프장을 찾고, 게시하고, 리뷰하세요! 자유롭게 자신의 내용을 공유하고 다른 사람들에 대해 의견을 말해보세요!
즉, 다음을 수행해야 합니다.
자세한 내용은 다음 단계를 따르세요.
먼저 github에서 프로젝트를 포크하세요.
git을 사용하여 포크된 프로젝트를 로컬로 복제하고 설정하세요.
# after cloning, navigate to the project
# to sync with origin
git remote add upstream < main_repo_url >
git remote add origin < your_forked_repo_url >
# to setup your locat dev branch
git branch your_local_branch
git checkout your_local_branch
# to add your changes
git add *
git commit -m " +your_local_branch: your commit here "
# push to your forked repo
git push origin your_local_branch
그런 다음 귀하의 코드를 검토하여 병합 여부를 확인하라는 메시지가 표시됩니다. 노고에 감사드리며 잘 지내세요!
또한 이렇게 하면 기본 repo master
브랜치가 업데이트되면 git pull upstream master
사용하여 쉽게 최신 업데이트를 얻을 수 있습니다.