【Android工具决】github上传项目

1、首先在github上面new 一个 repository
2、然后通过GitHub clone或者通过Git Shell 进行命令clone
git clone https://github.com/feifei003603/CallBackDemo.git
3、假如clone到C:\Users\ss\Documents\GitHub目录下
即C:\Users\ss\Documents\GitHub\CallBackDemo
4、然后将需要上传的代码复制到CallBackDemo目录下
5、切换到Git Shell命令行下,输入命令
git init
git add CallBackDemo
git commit -m 'CallBackDemo'
git remote add origin https://github.com/feifei003603/CallBackDemo.git
git push origin master
如果执行git remote add origin https://github.com/feifei003603/CallBackDemo.git,

出现错误:fatal: remote origin already exists
则执行以下语句:
git remote rm origin
再往后执行git remote add origin https://github.com/feifei003603/CallBackDemo.git 即可。
在执行git push origin master时,

报错:error:failed to push som refs to.......
则执行以下语句:
  git pull origin master
先把远程服务器github上面的文件拉先来,再push 上去。


更详细的步骤请参考 点击打开链接

你可能感兴趣的:(github,git)