[git-users] Re: help for losed files after git commit.

2009-09-10 Thread QT


Solved:

git reflog



On Sep 10, 12:22 pm, QT chyi@gmail.com wrote:
 git checkout branch_1
 git checkout head;
 git add file_1;
 git commit -a -mprepare to add init();
 git checkout master.

 It seems my commit of add file_1 is disappeared.
 Can I find it?

 Thanks for your attention.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To post to this group, send email to git-users@googlegroups.com
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en
-~--~~~~--~~--~--~---



[git-users] Re: help for losed files after git commit.

2009-09-10 Thread Rick DeNatale

On Thu, Sep 10, 2009 at 12:22 AM, QTchyi@gmail.com wrote:

 git checkout branch_1
 git checkout head;
 git add file_1;
 git commit -a -mprepare to add init();

So you commited it to branch_1

 git checkout master.

And now you've checked out the master branch.


 It seems my commit of add file_1 is disappeared.
 Can I find it?

It should be on the branch

git checkout branch_1

and the file should be in your working set.

Now if you want to merge the changes back to master:

git checkout master
git merge branch_1



-- 
Rick DeNatale

Blog: http://talklikeaduck.denhaven2.com/
Twitter: http://twitter.com/RickDeNatale
WWR: http://www.workingwithrails.com/person/9021-rick-denatale
LinkedIn: http://www.linkedin.com/in/rickdenatale

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To post to this group, send email to git-users@googlegroups.com
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en
-~--~~~~--~~--~--~---