leon@DGLIRUAN2 /F/linux/android/leon/workspace/AngoWidget (master)

$ git log

commit 2f847e3a858ecb2f843e7820cd8eaedf2ec7102d

Author: leon <llrraa@qq.com>

Date:   Mon Jul 14 23:38:58 2014 +0800



    alarm working, but every time it sets another timer where it goes into on

    receive



commit bc389c0b0a6795995351db5f41efdabbca169028

Author: leon <llrraa@qq.com>

Date:   Mon Jul 14 20:42:39 2014 +0800



    still not working. try the initial one



commit 35a68f4480347a3cbabb7d2febaabac90a10c275

Author: leon <llrraa@qq.com>

Date:   Mon Jul 14 13:54:16 2014 +0800



    view is ok now



commit 352a1d2f7a038d83e5e732948e2a10e3d7ce42ee

Author: leon <llrraa@qq.com>

Date:   Mon Jul 14 13:25:30 2014 +0800



    periodically update not working yet

$ git checkout 352a1

D       .classpath

M       .project

D       AndroidManifest.xml

D       ic_launcher-web.png

D       libs/android-support-v4.jar

D       proguard-project.txt

D       project.properties

D       res/drawable-hdpi/ic_launcher.png

D       res/drawable-mdpi/ic_launcher.png

D       res/drawable-xhdpi/ic_launcher.png

D       res/drawable-xxhdpi/ic_launcher.png

D       res/layout/activity_main.xml

D       res/layout/fragment_main.xml

D       res/menu/main.xml

D       res/values-v11/styles.xml

D       res/values-v14/styles.xml

D       res/values-w820dp/dimens.xml

D       res/values/dimens.xml

D       res/values/strings.xml

D       res/values/styles.xml

D       res/xml/appwidget_info.xml

D       src/com/ango/angowidget/MainActivity.java

Note: checking out '352a1'.



You are in 'detached HEAD' state. You can look around, make experimental

changes and commit them, and you can discard any commits you make in this

state without impacting any branches by performing another checkout.



If you want to create a new branch to retain commits you create, you may

do so (now or later) by using -b with the checkout command again. Example:



  git checkout -b new_branch_name



HEAD is now at 352a1d2... periodically update not working yet

git checkout --   AndroidManifest.xml

git checkout --   ic_launcher-web.png

git checkout --   libs/android-support-v4.jar

git checkout --   proguard-project.txt

git checkout --   project.properties

git checkout --   res/drawable-hdpi/ic_launcher.png

git checkout --   res/drawable-mdpi/ic_launcher.png

git checkout --   res/drawable-xhdpi/ic_launcher.png

git checkout --   res/drawable-xxhdpi/ic_launcher.png

git checkout --   res/layout/activity_main.xml

git checkout --   res/layout/fragment_main.xml

git checkout --   res/menu/main.xml

git checkout --   res/values-v11/styles.xml

git checkout --   res/values-v14/styles.xml

git checkout --   res/values-w820dp/dimens.xml

git checkout --   res/values/dimens.xml

git checkout --   res/values/strings.xml

git checkout --   res/values/styles.xml

git checkout --   res/xml/appwidget_info.xml

git checkout --   src/com/ango/angowidget/MainActivity.java

recover all files with git的更多相关文章

  1. How do I commit all deleted files in Git?

    Try this: $ git add -u This tells git to automatically stage tracked files -- including deleting the ...

  2. git报错:Pull is not possible because you have unmerged files解决方法

    在git pull的过程中,如果有冲突,那么除了冲突的文件之外,其它的文件都会做为staged区的文件保存起来. 重现: $ git pull A    Applications/Commerce/B ...

  3. git中Untracked files如何清除

    $ git status # On branch test # Untracked files: # (use "git add <file>..." to inclu ...

  4. How To Use Git Source Control with Xcode in iOS 6

    This tutorial is by Malek Trabelsi, a passionate iOS developer from Tunisia focused primarily on mob ...

  5. https://www.atlassian.com/git/tutorials/git-gc

    https://www.atlassian.com/git/tutorials/git-gc The git gc command is a repository maintenance comman ...

  6. git &github 快速入门

    本节内容 github介绍 安装 仓库创建& 提交代码 代码回滚 工作区和暂存区 撤销修改 删除操作 远程仓库 分支管理 多人协作 github使用 忽略特殊文件.gitignore 1.gi ...

  7. Android开发学习之路-Git的极简教程?

    Git是一个代码版本管理工具,也就是允许我们的一个项目拥有多个版本,这样我们可以随心所欲的修改我们的代码,如果出现问题,可以回退到某一个提交点.如果你还在用一堆堆注释来更新你的代码,那么可以尝试一下G ...

  8. Git技巧:右键菜单怎么去除?

    如果你是按照http://www.cnblogs.com/dunitian/p/5034624.html 那么你就没有这么多蛋疼的菜单了(反之:vs帮你安装的就蛋疼了) 说下解决方法: 1.Win+R ...

  9. git did not exit cleanly

    exit code 1 1.鼠标右键 -> TortoiseGit -> Settings -> Network 2.SSH client was pointing to C:\Pr ...

随机推荐

  1. 万能日志数据收集器 Fluentd - 每天5分钟玩转 Docker 容器技术(91)

    前面的 ELK 中我们是用 Filebeat 收集 Docker 容器的日志,利用的是 Docker 默认的 logging driver json-file,本节我们将使用 fluentd 来收集容 ...

  2. 问题:编译eshoponcontainers失败,提示error:invalid reference format

    环境: visual studio 2017 v15.4.2,docker ce Version 17.06.0-ce-win19 (12801) 参考问题页: https://github.com/ ...

  3. Oracle.ManagedDataAccess.dll 连接Oracle数据库不需要安装客户端

    最开始,连接Oracle 数据是需要安装客户端的,ado.net 后来由于微软未来不再支持 System.Data.OracleClient 这个 Data Provider 的研发,从 .NET 4 ...

  4. 高效sql2005分页存储过程

    高效分页存储过程 --分页存储过程示例 Alter PROCEDURE [dbo].[JH_PageDemo] @pageSize int = 9000000000, @pageIndex int = ...

  5. Java8 方式解决Stream流转其他数组

    Java8 方式解决Stream流转其他数组 一. 题记:原来的List转数组用的是如下方式: example private static void listToStringArray(List l ...

  6. 冒泡排序-Python与PHP实现版

    Python实现 import random a=[random.randint(1,999) for x in range(0,33)] # 冒泡排序,python中数组是按引用传递的,会直接在原数 ...

  7. 【爬虫】利用Scrapy抓取京东商品、豆瓣电影、技术问题

    1.scrapy基本了解 Scrapy是一个为了爬取网站数据,提取结构性数据而编写的应用框架.可以应用在包括数据挖掘, 信息处理或存储历史数据等一系列的程序中.其最初是为了页面抓取(更确切来说,网络抓 ...

  8. HTML5原生拖拽/拖放⎡Drag & Drop⎦详解

    前言 拖放(drap && drop)在我们平时的工作中,经常遇到.它表示:抓取对象以后拖放到另一个位置.目前,它是HTML5标准的一部分.我从几个方面学习并实践这个功能. 拖放的流程 ...

  9. sharePreference

    源码分析请看:http://blog.csdn.net/yanbober/article/details/47866369 一.  SharePreferences是用来存储一些简单配置信息的一种机制 ...

  10. 小程序web-view组件

    不久前微信小程序发布了web-view组件,这个消息在各个圈里引起不小的涟漪.近期正好在做小程序的项目,便研究了一下这个让大家充满期待的组件.   1,web-view这个组件是什么鬼? 官网的介绍: ...