Skip to content

Instantly share code, notes, and snippets.

@bactoria
Created February 15, 2018 04:25
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
How to uproad github from windows
git config –global user.name “사용자이름”
git config –global user.email “사용자이메일”
git init
git status
git add (file / folder / .(add all))
git commit –m “commit message”
git remote add origin 저장소 주소.git
git remote –v
git push origin master (+master) -> 강제변환
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment