깃허브 프로젝트 셋팅

홍태경·2021년 4월 5일
0

mkdir -p wecode/test

git clone https://github.com/wecode-bootcamp-korea/19-westagram-backend.git


ll
total 4.0K
drwxrwxr-x 5 ubuntu ubuntu 4.0K 4월 5 15:43 19-westagram-backend

cd 19-westagram-backend/

git add .

feature뒤에 띄어쓰기 하지마!

❯ git branch feature/teagyeong-hong

잘 만들어졌는지 확인

git branch

feature/teagyeong-hong

git checkout feature/teagyeong-hong
Switched to branch 'feature/teagyeong-hong'

터미널에서 올린것을 깃허브에 올릴테니 확인해줘 !

cd students

mkdir feature/taegyeong-hong

home/ubuntu/wecode/test/19-westagram-backend/mkdir

mkdir taegyeong-hong

ll
/home/ubuntu/wecode/test/19-westagram-backend/students/feature/taegyeong-hong/taegyeong-hong

❯conda activate westagram

django-admin startproject project_westagram
❯ ls
project_westagram

git add .

git commit -m 'create project on conda'
[feature/teagyeong-hong a17253c] create project on conda
6 files changed, 195 insertions(+)
create mode 100755 students/feature/taegyeong-hong/taegyeong-hong/project_westagram/manage.py
create mode 100644 students/feature/taegyeong-hong/taegyeong-hong/project_westagram/project_westagram/init.py
create mode 100644 students/feature/taegyeong-hong/taegyeong-hong/project_westagram/project_westagram/asgi.py
create mode 100644 students/feature/taegyeong-hong/taegyeong-hong/project_westagram/project_westagram/settings.py
create mode 100644 students/feature/taegyeong-hong/taegyeong-hong/project_westagram/project_westagram/urls.py
create mode 100644 students/feature/taegyeong-hong/taegyeong-hong/project_westagram/project_westagram/wsgi.py

git log #상단

commit a17253ca2729d5f964548899967f298d3389933a (HEAD -> feature/teagyeong-hong)
Author: ubuntu a01026676497@gmail.com
Date: Mon Apr 5 16:17:44 2021 +0900

git push origin feature/teagyeong-hong
Username for 'https://github.com': gusxoqkqh1
Password for 'https://gusxoqkqh1@github.com':
Enumerating objects: 16, done.
Counting objects: 100% (16/16), done.
Delta compression using up to 4 threads
Compressing objects: 100% (9/9), done.
Writing objects: 100% (14/14), 2.97 KiB | 1.49 MiB/s, done.
Total 14 (delta 2), reused 5 (delta 1)
remote: Resolving deltas: 100% (2/2), completed with 1 local object.
remote:
remote: Create a pull request for 'feature/teagyeong-hong' on GitHub by visiting:
remote: https://github.com/wecode-bootcamp-korea/19-westagram-backend/pull/new/feature/teagyeong-hong
remote:
To https://github.com/wecode-bootcamp-korea/19-westagram-backend.git

  • [new branch] feature/teagyeong-hong -> feature/teagyeong-hong 내가 수정한 사항이 깃허브에 올라온다. compare & pull request 클릭
    밑에 내용에 변경사항을 세세히 잘 적고
    오른쪽 사이드에 라벨에 내 상황을 체크해줘라
    그것을 확인 하려면 3번쨰 란에 pull requests 를 눌러라

이슈란을 보고 1번부터 시작해보자

profile
나의 에고를 인정하고 사랑하자

0개의 댓글