After using git to locally track a project, how can I add it to GitHub? -
after using git locally track project, how can add github?
github gives instructions after you've created repository online.
cd directory local repository
git remote add origin whatever-address-my-repository is.git set remote
then make commit, , push master branch.
git push -u origin master
Comments
Post a Comment