You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cd
cd Desktop/
git clone https://github.com/Jinsun-Lee/project_IEEE.git
cd project_IEEE/
git checkout -b chore/14-jetank-api # 새 브랜치를 만들고, 현재 작업 브랜치를 그 브랜치로 변경
git add . # 현재 디렉토리에서 변경된 모든 파일을 staging area에 올림
git add --renormalize . # 줄바꿈 포맷 통일
git commit -m "[#14] 내용" # 스테이징된 파일들을 새 커밋으로 저장
# git push --set-upstream origin chore/14-jetank-api # 업로드
1-A. 처음 Clone할 때
cd ~/Desktop
git clone https://github.com/Jinsun-Lee/project_IEEE.git
cd project_IEEE
# 새로운 브랜치 생성(개인브랜치 수정)
git checkout -b 개인브랜치/14-jetank-api
→ 2. 업로드 파트 진행
1-B. 로컬에 Clone한 적 있음
cd ~/Desktop/project_IEEE
git fetch origin # 원격 최신 정보 전체 가져오기
git checkout 개인브랜치/14-jetank-api # 작업 기반 브랜치로 이동
git pull origin 개인브랜치/14-jetank-api # 작업 기반 브랜치로 이동
→ 코드 수정
→ 2. 업로드 파트 진행
2. 업로드
아래 내용 수정
[test]에서 test를 #이슈번호로 수정
커밋 메시지 내용 수정
개인브랜치 수정
git add .
git commit -m "[test] 작업 분담 명령어 테스트"
git push --set-upstream origin 개인브랜치/14-jetank-api
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
초기 세팅 코드 공유(다른 사람들은 할 필요 없어)
1-A. 처음 Clone할 때
→ 2. 업로드 파트 진행
1-B. 로컬에 Clone한 적 있음
→ 코드 수정
→ 2. 업로드 파트 진행
2. 업로드
아래 내용 수정
test]에서 test를#이슈번호로 수정개인브랜치수정Beta Was this translation helpful? Give feedback.
All reactions