Git FAQ

From HaFrWiki
Revision as of 16:59, 16 July 2017 by Hjmf (talk | contribs) (Reference)
Jump to: navigation, search

Rollback to an old Git commit

How to get a previous version of the Git repository. <syntaxhighlight lang="bash"> $ git checkout <revision> </syntaxhighlight> The revision number is the number of the previous version.
To obtain these numbers use: <syntaxhighlight lang="bash"> $ git log commit 8bad69f3c3c37725ee0cb0cfa34fe6a2f5298272 Author: Harm Frielink <harm@harmfrielink.nl> Date: Wed Jul 12 19:34:21 2017 +0200

   Additions

commit d642082afa0aadbff5c926179ab040d2177358cf Author: Harm Frielink <harm@harmfrielink.nl> Date: Fri May 22 11:22:48 2015 +0200

   Added Observer Observable pattern

</syntaxhighlight> The numbers behind the commit are revision numbers.


See also

top

Reference

top