do u like choc chip cookies.
Yes.
seen from United States

seen from United States

seen from United States

seen from Malaysia
seen from China

seen from United States

seen from Malaysia
seen from China

seen from United States
seen from United States

seen from Mexico
seen from United States
seen from Poland
seen from Greece
seen from United States

seen from Poland

seen from Sri Lanka
seen from United States
seen from United States

seen from Poland
do u like choc chip cookies.
Yes.

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
git: notes
reflog rebase -i starts with "rebase -i (start): checkout ..." and ends with "rebase -i (finish): returning to refs/ heads/..." So, commit before rebase is the one just under "rebase -i (start): ...".
original source : http://gitready.com/advanced/2009/01/17/restoring-lost-commits.html
So, you just did a git reset --hard HEAD^ and threw out your last commit. Well, it turns out you really did need those changes. You’ll never be able to implement that algorithm that perfectly twice, so you need it back. Don’t fear, git should still have your commit. When you do a reset, the commit you threw out goes to a “dangling” state. It’s still in git’s datastore, waiting for the next garbage collection to clean it up. So unless you’ve ran a git gc since you tossed it, you should be in the clear to restore it.
For these examples, I’m working with the code for this blog. From the top, we just ran:
$ git show-ref -h HEAD 7c61179cbe51c050c5520b4399f7b14eec943754 HEAD $ git reset --hard HEAD^ HEAD is now at 39ba87b Fixing about and submit pages so they don't look stupid $ git show-ref -h HEAD 39ba87bf28b5bb223feffafb59638f6f46908cac HEAD
So our HEAD has been backed up by one commit. At this point if we wanted it back we could just git pull, but we’re assuming that only our local repository knows about the commit. We need the SHA1 of the commit so we can bring it back. We can prove that git knows about the commit still with the fsck command:
$ git fsck --lost-found [... some blobs omitted ...] dangling commit 7c61179cbe51c050c5520b4399f7b14eec943754
You can also see the that git knows about the commit still by using the reflogcommand:
$ git reflog 39ba87b... HEAD@{0}: HEAD~1: updating HEAD 7c61179... HEAD@{1}: pull origin master: Fast forward [... lots of other refs ...]
So, we now have our SHA1: 7c61179. If we want to get immediately apply it back onto our current branch, doing a git merge will recover the commit:
$ git merge 7c61179 Updating 39ba87b..7c61179 Fast forward css/screen.css | 4 ++++ submit.html | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-)
This command will bring your lost changes back and make sure that HEAD is pointing at the commit. From here you can continue to work as normal! You could also checkout the SHA1 into a new branch, but really a merge is the fastest and easiest way to restore that lost commit once you have the hash. If you have other ways let us know in the comments!
If you want some more options on what to do in this situation, Mathieu Martin’sillustrated guide to recovering lost commits with Git has plenty for you.
Reflog is a life-saving (well, work-saving) tool hidden within the Git version control system; this article explains how it works, and how to use it to recover lost commits after an ill-advised reset.
git reset HEAD@{1}
오늘 작업하다가 예전에 했던 작업을 다시 취소해야 할 일이 생겼는데 단순히 reset 명령어로 해당 작업의 커밋을 초기화 하면 될 줄 알았는데...
그 해당 작업을 했을 때로 브랜치가 롤백 되었다! 순간 멘붕; 당황하지 말고, 구글을 열어서, 검색하고, 명령어 하나 입력해서. 끝~
git reset HEAD@{1}
참고: Undoing git reset?

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
I wonder what it's like to constantly have Tumblr notifications.
Keep Calm and git reflog
Git rebase fun
"git rebase" and "git merge" both provide ways of integrating commits on separate branches of a development tree.
git rebase -i HEAD~$Z
Provides a way of editing commits back to $Z commits ago.
When/if things go wrong then being able to pick specific commits identified with
git reflog
is very useful.
http://git-scm.com/book/en/Git-Branching-Rebasing
http://wiki.sniping.org/drcs/git/tricks
http://blog.moertel.com/posts/2007-12-10-how-i-stopped-missing-darcs-and-started-loving-git.html
http://stackoverflow.com/questions/134882/undoing-a-git-rebase