How to uproad github from windows
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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