recover all files with git
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的更多相关文章
- 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 ...
- git报错:Pull is not possible because you have unmerged files解决方法
在git pull的过程中,如果有冲突,那么除了冲突的文件之外,其它的文件都会做为staged区的文件保存起来. 重现: $ git pull A Applications/Commerce/B ...
- git中Untracked files如何清除
$ git status # On branch test # Untracked files: # (use "git add <file>..." to inclu ...
- 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 ...
- 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 ...
- git &github 快速入门
本节内容 github介绍 安装 仓库创建& 提交代码 代码回滚 工作区和暂存区 撤销修改 删除操作 远程仓库 分支管理 多人协作 github使用 忽略特殊文件.gitignore 1.gi ...
- Android开发学习之路-Git的极简教程?
Git是一个代码版本管理工具,也就是允许我们的一个项目拥有多个版本,这样我们可以随心所欲的修改我们的代码,如果出现问题,可以回退到某一个提交点.如果你还在用一堆堆注释来更新你的代码,那么可以尝试一下G ...
- Git技巧:右键菜单怎么去除?
如果你是按照http://www.cnblogs.com/dunitian/p/5034624.html 那么你就没有这么多蛋疼的菜单了(反之:vs帮你安装的就蛋疼了) 说下解决方法: 1.Win+R ...
- git did not exit cleanly
exit code 1 1.鼠标右键 -> TortoiseGit -> Settings -> Network 2.SSH client was pointing to C:\Pr ...
随机推荐
- 一:Tomcat 服务器 在45秒内未启动成功
myeclipse或者eclipse中 tomcat 启动超时怎么办? 修改文件 找到Eclipse的工作空间\.metadata\.plugins\org.eclipse.wst.s ...
- 细谈昆明SEO市场
就在前几天,以前的同事跟我说,现在昆明SEO市场真的是烂到不行,每家公司在招SEO这个方向的时候,给到的工资都很低,接着这几天闲来无事,就在某个招聘平台上注册了个账号,投了将近100份简历,专门去面试 ...
- iOS开发针对对Masonry下的FPS优化讨论
今天博客的内容就系统的讨论一下Masonry对FSP的影响,以及如何更好的使用Masonry.如果你对iOS开发足够熟悉的话,那么对Masonry框架应该不陌生.简单的说,Masonry的诞生让Aut ...
- chrony软件使用说明
1.1.1 chrony简介 Chrony是一个开源的自由软件,它能保持系统时钟与时钟服务器(NTP)同步,让时间保持精确. 它由两个程序组成:chronyd和chronyc. chronyd是一个后 ...
- node学习笔记(二)(ajax方式向node后台提交数据)
通过ajax向node后台提交数据过程(附手写前后台代码),并总结post与get的区别 POST 前台代码 //CSS简单给点样式 <style> form{ width: 200px; ...
- CCLuaObjcBridge - Lua 与 Objective-C 互操作的简单解决方案
http://dualface.github.io/blog/2013/01/27/call-objectivec-from-lua/ 月初的时候,发了一篇关于 Lua 与 Java 互操作的文章,里 ...
- 在C#中输出变量的地址
int a = 3; GCHandle handle = GCHandle.Alloc(a); var pin = GCHandle.ToIntPtr(handle); Console.WriteLi ...
- 在Github发布自己的compile包
Android入门到转行做服务员--在Github发布自己的compile包 2017-12-05 15:27:10 这是一粒代码发布的第一篇博客,一粒代码从事android开发,近期打算开始搞搞博客 ...
- 浅谈IM(InstantMessaging) 即时通讯/实时传讯
一.IM简要概述 IM InstantMessaging(即时通讯,实时传讯)的缩写是IM,互动百科大致解释是一种可以让使用者在网络上建立某种私人聊天(chatroom)的实时通讯服务. 大部 ...
- TeamTalk安装测试
TeamTalk介绍 项目框架 TeamTalk是蘑菇街的开源项目,github维护的最后时间是2015但是仍然是一款值得学习的好项目,麻雀虽小五脏俱全,本项目涉及到多个平台.多种语言,简单关系如下图 ...