Skip to content

Instantly share code, notes, and snippets.

@bactoria
Created February 15, 2018 04:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bactoria/c980f58f9c30c92e5ca952420f98ac4a to your computer and use it in GitHub Desktop.
Save bactoria/c980f58f9c30c92e5ca952420f98ac4a to your computer and use it in GitHub Desktop.
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