
On Fri, 25 Jan 2008 11:10:35 +0530 "Manish Jaggi" manish.jaggi@gmail.com wrote:
Hi All,
I have some requirement to debug a patch based on u-boot 1.1.3, could u please let me know how to revert from the current git tree and get to the 1.1.3 version.
First of all, please don't start a new thread by replying to a different message (or a digest.) Your subject isn't very informative, and the threading tends to get messed up.
Second of all, this is really a question about git, so it's somewhat off-topic for this list.
Anyway, "git checkout -b my-debug-branch v1.1.3" will make "my-debug-branch" point to the 1.1.3 version and populate your working tree with it.
Oh, and the next step should be "git rebase origin/master" to bring your patch up to date ;-)
Haavard