How do I add my project from Android Studio to my GitHub page?

前端 未结 2 2003
南笙
南笙 2021-01-15 02:32

I\'ve been looking at some guides on how to do this but nothing I\'ve tried is working. What I\'ve done so far:

  • Downloaded git for windows
  • enabled ve
2条回答
  •  温柔的废话
    2021-01-15 03:12

    You have origin as a remote created already, just add your stuff to the staging area using git add . then use git commit -m 'your commit message' to commit your changes, then the most important part, PUSH your master branch to your remote using git push origin master.

    You should read about the git workflow, here: http://git-scm.com/book/en/Getting-Started-Git-Basics, http://marklodato.github.io/visual-git-guide/index-en.html.

提交回复
热议问题