public class HelloAction extends Action { public ActionForward execute(ActionMapping mapping, …)
throws Exception { … return mapping.findForward("Hello EveryBody !!"); }}

jeudi 22 mars 2018

Vous avez commiter vers la mauvaise branche git ?

Solution : 

  • Faire le rollback du commit et n'oublie pas de garder en copie le hash de celui-ci :
git reset --hard HEAD^
  • Faire un pull du commit vers une autre branche git :
git checkout NOUVELLE-BRANCHE
git cherry-pick HASH-COMMIT

Et voilà le tour est joué :)