

SURVOL HAUTS DE SEINE MAI 2017
FAQ
Quelle est la 2e question ? 10/12/2019
Voici la 2e réponse
Quelle est la question 1 que vous souhaitez poser ? 10/12/2019
Voici notre réponse.
Question FAQ à contenu
C'est la répons e
FAQ456
Réponse 456
Faq 123
C'est la réponse
Question 13
Question ou pas question ?
Question 12
Quelle est la question
ma question
ma réponse
Oh shit, I did something terribly wrong, please tell me git has a magic time machine!?!
git reflog # you will see a list of every thing you've done in git, across all branches! # each one has an index HEAD@{index} # find the one before you broke everything git reset HEAD@{index} # magic time machine
Oh shit, I committed and immediately realized I need to make one small change!
# make your change git add . # or add individual files git commit --amend # follow prompts to change or keep the commit message # now your last commit contains that change!