|
From: Ethan A M. <me...@uw...> - 2022-02-04 00:44:10
|
On Thursday, 3 February 2022 14:38:34 PST Tatsuro MATSUOKA wrote:
> Please show me tbe way to get the previous image git go master branch.
Go back exactly one commit:
git checkout HEAD~1
Go back to a commit that you know by number
git checkout b992a505
Restore the state to where you started
git checkout master
Ethan
>
> For my cygwin build of gnuplot on the development source, gnuplot does not run
> $ src/gnuplot
> (nothing happen)
> $
> (back to prompt)
>
> I exucute gnuplot via gdb and set back trace to main but gnuplot ends.
>
> I want to get the previous git source to see from what change causes the issue.
> I note thar I could execute gnuplot 5.4.3 built myself.
>
> Thank for advance.
>
> Tatsuro
|