git push, clone via GITHUB
GIT PUSH git add . git status // listed as green characters git config --global user.name "John Doe" git config --global user.email johndoe@example.com git commit -m "first commit" git status // nothing to commit git remote add origin "GITHUB URL" git remote -v // figure out origin address git push origin master git reset HEAD . GIT CLONE git clone --branch master "GITHUB URL" + cd app + npm i +..
생활코딩
2024. 1. 26. 15:29