Skip to content

Instantly share code, notes, and snippets.

@koo6357
Last active October 13, 2019 07:11
Show Gist options
  • Save koo6357/d8d03e6584d420cb42833c082324bbad to your computer and use it in GitHub Desktop.
Save koo6357/d8d03e6584d420cb42833c082324bbad to your computer and use it in GitHub Desktop.
gitSetCredential

Git Set Credential

git 을 사용할때 매번 username과 password를 물어보는게 불편하다면 credential을 저장해주자. git repository 폴더로 이동하여 아래와같이 차례대로 입력하여 준다.

    $ git config credential.helper store
    $ git push http://example.com/repo.git
    Username: <type your username>
    Password: <type your password>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment