Github 매번 token 입력 없이 Push 하는 법

danbibibi·2022년 1월 31일
2

Github 매번 token 입력 없이 Push 하는 법

Access token을 만들고 나면 token을 입력해주어야 push가 된다!
매번 token을 입력해주기엔 너무 귀찮아서 해결 방법을 찾아보았다!

  1. 먼저 clone 받은 repository에서 ls-la 명령어를 입력하면 .git이라는 디렉토리를 볼 수 있다.
  2. cd .git 명령어를 통해 .git 디렉토리로 이동하자.
  3. vi config 명령어를 통해 config 파일을 열자. 아래와 같은 화면이 보일 것이다.
[core]
        repositoryformatversion = 0
        filemode = true
        bare = false
        logallrefupdates = true
        ignorecase = true
        precomposeunicode = true
[remote "origin"]
        url = https://github.com/LIMDANBI/Capstone.git
        fetch = +refs/heads/*:refs/remotes/origin/*
[branch "main"]
        remote = origin
        merge = refs/heads/main

4. [remote "origin"]url 부분을 다음과 같이 바꿔주자.
각자의 github 이름Access token을 입력해주면 되고, <>는 쓰는 거 아니다~!

[core]
        repositoryformatversion = 0
        filemode = true
        bare = false
        logallrefupdates = true
        ignorecase = true
        precomposeunicode = true
[remote "origin"]
        url = https://<user-id>:<token>@github.com/LIMDANBI/Capstone.git
        fetch = +refs/heads/*:refs/remotes/origin/*
[branch "main"]
        remote = origin
        merge = refs/heads/main
profile
블로그 이전) https://danbibibi.tistory.com

0개의 댓글