上传项目到GitHub,同步远程Github仓库(2)

Administrator@VAIO-11061700 /d/GitHub/RescueApp (master)
$ git push origin master
error: src refspec master does not match any.
error: failed to push some refs to 'git@github.com:jptiancai/RescueApp.git'

Administrator@VAIO-11061700 /d/GitHub/RescueApp (master)
$ git commit -m 'initial commit'
[master (root-commit) 926da3f] initial commit
warning: LF will be replaced by CRLF in AndroidManifest.xml.
The file will have its original line endings in your working directory.
warning: LF will be replaced by CRLF in gen/com/yonvoo/main/BuildConfig.java.
The file will have its original line endings in your working directory.
warning: LF will be replaced by CRLF in proguard-project.txt.
The file will have its original line endings in your working directory.
warning: LF will be replaced by CRLF in project.properties.
The file will have its original line endings in your working directory.
warning: LF will be replaced by CRLF in res/values-v11/styles.xml.
The file will have its original line endings in your working directory.
warning: LF will be replaced by CRLF in res/values-v14/styles.xml.
The file will have its original line endings in your working directory.
warning: LF will be replaced by CRLF in res/values/strings.xml.
The file will have its original line endings in your working directory.
warning: LF will be replaced by CRLF in res/values/styles.xml.
The file will have its original line endings in your working directory.
 74 files changed, 1548 insertions(+)
 create mode 100644 .gitattributes
 create mode 100644 .gitignore
 create mode 100644 AndroidManifest.xml
 create mode 100644 gen/com/yonvoo/main/BuildConfig.java
 create mode 100644 gen/com/yonvoo/main/R.java
 create mode 100644 ic_launcher-web.png
 create mode 100644 libs/android-support-v4.jar
 create mode 100644 proguard-project.txt
 create mode 100644 project.properties
 create mode 100644 res/drawable-hdpi/app_logo.png
 create mode 100644 res/drawable-hdpi/bg.png
 create mode 100644 res/drawable-hdpi/butten_pressed.png
 create mode 100644 res/drawable-hdpi/dark_dot.png
 create mode 100644 res/drawable-hdpi/guide_350_01.jpg
 create mode 100644 res/drawable-hdpi/guide_350_02.jpg
 create mode 100644 res/drawable-hdpi/guide_350_03.jpg
 create mode 100644 res/drawable-hdpi/guide_350_04.jpg
 create mode 100644 res/drawable-hdpi/ic_launcher.png
 create mode 100644 res/drawable-hdpi/item_bg.png
 create mode 100644 res/drawable-hdpi/photo8.png
 create mode 100644 res/drawable-hdpi/richangyiwai.png
 create mode 100644 res/drawable-hdpi/settings.png
 create mode 100644 res/drawable-hdpi/welcome.png
 create mode 100644 res/drawable-hdpi/welcome_android.jpg
 create mode 100644 res/drawable-hdpi/white_dot.png
 create mode 100644 res/drawable-hdpi/yundongzijiu.png
 create mode 100644 res/drawable-hdpi/ziranzaihai.png
 create mode 100644 res/drawable-ldpi/butten_pressed.png
 create mode 100644 res/drawable-ldpi/butten_unpress.png
 create mode 100644 res/drawable-ldpi/dark_dot.png
 create mode 100644 res/drawable-ldpi/guide_350_01.jpg
 create mode 100644 res/drawable-ldpi/guide_350_02.jpg
 create mode 100644 res/drawable-ldpi/guide_350_03.jpg
 create mode 100644 res/drawable-ldpi/guide_350_04.jpg
 create mode 100644 res/drawable-ldpi/ic_launcher.png
 create mode 100644 res/drawable-ldpi/logo.png
 create mode 100644 res/drawable-ldpi/welcome_android.jpg
 create mode 100644 res/drawable-ldpi/white_dot.png
 create mode 100644 res/drawable-mdpi/ic_launcher.png
 create mode 100644 res/drawable-xhdpi/ic_launcher.png
 create mode 100644 res/drawable/dot.xml
 create mode 100644 res/drawable/whats_new_start_btn.xml
 create mode 100644 res/layout/detail.xml
 create mode 100644 res/layout/griditem.xml
 create mode 100644 res/layout/guide.xml
 create mode 100644 res/layout/listview_item.xml
 create mode 100644 res/layout/main.xml
 create mode 100644 res/layout/splash.xml
 create mode 100644 res/layout/test.xml
 create mode 100644 res/layout/what_new_four.xml
 create mode 100644 res/layout/what_new_one.xml
 create mode 100644 res/layout/what_new_three.xml
 create mode 100644 res/layout/what_new_two.xml
 create mode 100644 res/menu/activity_main.xml
 create mode 100644 res/values-v11/styles.xml
 create mode 100644 res/values-v14/styles.xml
 create mode 100644 res/values/strings.xml
 create mode 100644 res/values/styles.xml
 create mode 100644 src/com/yonvoo/activity/DetailActivity.java
 create mode 100644 src/com/yonvoo/activity/GuideActivity.java
 create mode 100644 src/com/yonvoo/activity/MainActivity.java
 create mode 100644 src/com/yonvoo/activity/SecCategoryActivity.java
 create mode 100644 src/com/yonvoo/activity/SplashActivity.java
 create mode 100644 src/com/yonvoo/adapter/GridViewAdapter.java
 create mode 100644 src/com/yonvoo/adapter/ListViewAdapter.java
 create mode 100644 src/com/yonvoo/adapter/ViewPagerAdapter.java
 create mode 100644 src/com/yonvoo/domain/Category.java
 create mode 100644 src/com/yonvoo/domain/Detail.java
 create mode 100644 src/com/yonvoo/domain/SecCategory.java
 create mode 100644 src/com/yonvoo/service/CategoryService.java
 create mode 100644 src/com/yonvoo/service/DBHelper.java
 create mode 100644 src/com/yonvoo/service/DetailService.java
 create mode 100644 src/com/yonvoo/service/SecCategoryService.java
 create mode 100644 src/com/yonvoo/test/DBTest.java

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/16131.html