카테고리 없음

[Githun] Replit 과 Github 연동 및 업로드 방법

ThLee 2022. 4. 19. 20:47
728x90

Replit과 Github 연동 방법

  1. 리플렛 접속
  2. Account 이동
  3. Github 계정 연동
  4. Github사이트로 와서 연동 할 Repository 생성하기
  5. replit 사이트로 와서 프로젝트 생성 및 깃허브 연동

1. Replit 접속 및 로그인

https://replit.com/

 

The collaborative browser based IDE

Replit is a simple yet powerful online IDE, Editor, Compiler, Interpreter, and REPL. Code, compile, run, and host in 50+ programming languages.

replit.com

 

2. Account로 이동

3. Github 계정 연동

- 연동은 어렵지 않으니 직접하시면 됩니다. 

 

4. Github 사이트로 와서 연동 할 Repository 생성하기

5. replit 사이트로 와서 프로젝트 생성 및 깃허브 연동

- Home - Create - 생성하기

 

- Import from GitHub 클릭

- GitHub URL에 "URL 입력" 이와 같이 입력해주세요

ex) "github.com/hoon-git/testsssst"

- Import from GitHub 클릭 


Github 업로드 방법

  1. replit에 console로 이동
  2. git init
  3. git add .
  4. git commit -m 'replit test'
  5. git push -u origin master 
  6. git push (개인적으로 5번 안되서 6번으로했음)
    1. username : 아이디 입력
    2. password : token 입력 ( token 생성 방법은 아래 링크 이동 )

Password 용 token 생성 링크

https://zest1923.tistory.com/58

 

[GitHub] 새로운 인증방법 도입 (push 안될 때)

갑자기 git push, commit가 안되는 상황을 겪었어요. 깃허브에서 ID/PW 인증을 폐지하고, 토큰 인증 방식을 채택했기 때문입니다. Basic authentication using a password to Git is deprecated and will soon no..

zest1923.tistory.com

 

728x90