您的位置:首页 > 移动开发 > Android开发

android 使用 git上传文件到github

2016-08-12 16:39 441 查看
While the EGit plugin for Eclipse is a good option, an even better one would be to learn to use git bash -- i.e., git from the command line. It isn't terribly difficult to learn the very basics of git, and it is often very benefitial to understand some basicoperations before relying on a GUI to do it for you.But to answer your question:First things first, download git from http://git-scm.com/. Then go to http://github.com/ and create an account and repository.On your machine, first you will need to navigate to the project folder using git bash.When you get there you do:
[code]git init
[/code]which initiates a new git repository in that directory.When you've done that, you need to register that new repo with a remote (where you'll upload -- push -- your files to), which in this case will be github. You'll get the correct URL from your repo on GitHub.
[code]$ git remote add origin https://github.com/[username]/[reponame].git[/code][/code] You need to add you existing files to your local commit:
[code]git add .   # this adds all the files
[/code]Then you need to make an initial commit, so you do:
[code]git commit -a -m "Initial commit" # this stages your files locally for commit.
# they haven't actually been pushed yet
[/code]Now you've created a commit in your local repo, but not in the remote one. To put it on the remote, you do the second line you posted:
git push -u origin --all
转自

二:在已经创建了本地文件与github上的rep之间的联系后,提交代码的更新

1)git init2) git status//检测文件改变状况3)git add .//添加所有改变文件3)git commit -m "这里添加提交的注释"4)git push这样就把本地项目修改的代码同步到github里的项目了三:清除已经建立的本地文件与github链接,来源To remove a remote repository you enter:
git remote rm origin
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: