Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 행정동표시
- torch.nn.Linear
- 단어뒤집기
- 모수추정
- wishart parameter 추정법
- d similar
- 코테select
- 태블로행정동
- 태블로
- toss sql
- wishart laplace transform
- 토스 data assistant
- wishart gamma random effect model
- d similar matrices class
- explicit random effect model
- iris대학원
- 백준 알고리즘 기초1
- 토스 sql
- random effect model
- 한-캐대학원
- adp필기문제
- dependency modeling
- 한국캐나다대학원연수
- sql코테준비
- 대학원연수프로그램
- adp문제
- 태블로에러
- 이공계 대학원 연수 프로그램
- 조세퍼스 문제
- wishart-gamma
Archives
- Today
- Total
수리통계 분석 코딩 실습
[etc] 기존 branch에 clone 후 로컬 변경 파일 push 본문
git link의 branch clone 후 로컬 파일에서 변경사항을 git branch로 push하자!
[process]
[git link의 변경사항 pull] - [기존 branch clone] - [변경된 로컬 파일 push]
[1] git link의 변경사항 pull
기존 git link에 clone한 파일 열기 > 터미널 열기

기존 git 변경 내용 pull
git pull origin main

[2] 기존 branch clone
git clone -b '브랜치명' 'git link'

git branch 확인
git branch

[3] 변경된 로컬 파일 push
로컬 파일 변경 후 github에 변경 내용 전달
git add .
git commit '변경 내역'
- add 는 변경 사항을 첨부하는 것
- commit은 변경 내용이 무엇인지 설명

※ 파일 이름에 띄어쓰기가 있을 경우 발생되는 오류 해결법
LF will be replaced by CRLF the next time Git touches it
git config --global core.autocrlf false //줄 바꿈 무시
git 내용 branch로 push
git push origin '박민지(21기)'

'동아리 > 투빅스' 카테고리의 다른 글
[컨퍼런스] 게임 유저 행동 분석 - 1️⃣ (0) | 2024.11.03 |
---|---|
[conference] 노인 사고 다발 지역 모델링 아이디어 (0) | 2024.06.28 |
[week8] Swin Transformer: Hierarchical Vision Transformer using Shifted Windows 논문 리뷰 (0) | 2024.03.12 |
[etc] git 브랜치 생성 후 과제 파일 업로드 (0) | 2024.02.08 |
[week1] github 파일 다운 및 변경사항 push (1) | 2024.01.24 |