-
Notifications
You must be signed in to change notification settings - Fork 8
Uploading Setting
DK Kang edited this page Nov 6, 2023
·
1 revision
Repo를 계정에 Fork한 후, Pull Request 전송.


git clone https://github.com/<YOUR_USERNAME>/DeepSync.git예시) 강동규 - DKKang
cd DeepSync.git
git branch DKKang main// branch 리스트를 통해서 확인하기 *표시 있는 부분이 선택된 branch
git branch
// branch switch로 설정
git switch DKKangd. 작성을 마친 후 아래와 같이 commit을 진행한다. commit message는 docs: <이름> <Paper Keyword>로 작성한다. ex) docs: 강동규 VGGNet
git add Docs/<Paper>.pdf
git commit -m "docs: <이름> <Paper Keyword>"// 처음 repo로 push할 시
$ git push --set-upstream origin week1/sunghwan
// 이전에 push한 적이 있을 때
$ git push

d. 파일을 업로드하고, 아래와 같이 commit을 진행한다. commit message는 docs: <이름> <Paper Keyword>로 작성한다. ex) docs: 강동규 VGGNet
git add Docs/<Paper>.pdf
git commit -m "docs: <이름> <Paper Keyword>"
