[git-users] problem with $git pull command

2014-02-11 Thread srinivas thanneeru
Hi sir /madam, I have git remote repository for my project work, i cloned that from system 1, edited some file called examle.java and then i added it to stag area, then commited, then push the sam to repository again. From another system im doing

Re: [git-users] problem with $git pull command

2014-02-11 Thread Konstantin Khomoutov
On Tue, 11 Feb 2014 04:46:52 -0800 (PST) srinivas thanneeru wrote: > I have git remote repository for my project > work, i cloned that from system 1, edited some file called > examle.java and then i added it to stag area, then commited, then > push the sam to repository a

[git-users] How can i get into previous version of code in git ?

2014-02-11 Thread srinivas thanneeru
Hi all.. I am git in my project now. I did commit for so many times. so how can go to a particular commit code, or previous version of my code. Appreciate your time, thanks in advance :) -- You received this message because you are subscribed to the Google Groups "Git for human be

[git-users] Re: How can i get into previous version of code in git ?

2014-02-11 Thread srinivas thanneeru
On Tuesday, February 11, 2014 10:50:16 PM UTC+5:30, srinivas thanneeru wrote: > > Hi all.. > I am using git in my project now. I did commit for so many > times. so how can go to a particular commit state, or previous version of > my code. > > Appreciate your time, thanks in advanc

Re: [git-users] How can i get into previous version of code in git ?

2014-02-11 Thread John McKown
I would do a: git log You'll see a lot of lines like: commit 113efcd0eb... Author: Date: Find the date you're looking for. Then you can do a git checkout 113efcd0eb... which will restore the files from that commit into the working directory. I often use a "git tag" to give that long hexadecim