Skip to content

J511Y/Algo-Study

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

알고리즘 스터디

GitHub 사용방법

Forking WorkFlow

  1. git 설치
  2. 해당 프로젝트 Fork
    • git repository fork를 하여 개인 git 계정에 repository를 생성한다.
  3. 개인 remote repository를 Local로 clone 합니다.
git clone [email protected]:/Algo-Study.git
  1. public repository를 Upstream remote로 추가합니다.
    • origin, upstream remote가 생성된 것을 확인할 수 있습니다.
git remote add upstream [email protected]:KangPilGyu/Algo-Study.git
git remote -v
  1. Branch를 생성합니다.
 git checkout -b 
  1. 소스 코드를 생성, 수정 한 후 commit 를 생성합니다.
  • commit은 [이름][주차.스터디주제]간략한 커밋 내용
  • ex) [김제니][1.DP]1101문제 수정
git commit -m "[김제니][1.DP]1101문제 수정"
  1. 개인 Remote Repository에 해당 브랜치를 push 합니다.
    • push 전 git fetch upstream를 통해 Upstream Repository의 최신 변경사항과 일치시킵니다.
 git push origin 
  1. 개인 Remote Repository에서 간단한 코멘트와 함께 Pull Request를 생성합니다.
  2. git에서는 한글 파일명을 제공하지 않습니다. 터미널에서 한글 파일명이 깨져보이는 현상 제거
git config --global core.quotepath false 

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 66.6%
  • CSS 21.2%
  • JavaScript 9.1%
  • Python 3.1%