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

https://help.github.com/articles/create-a-repo


Comments

Popular posts from this blog

Glib GIOChannel -

delphi - When I encode/decode SMS PDU (GSM 7 Bit) user data, do I need prepend the UDH first? -

python - Obscure curses error message when creating a sub window -