Advertisement
naveilhan

Untitled

Mar 6th, 2020
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.59 KB | None | 0 0
  1. Dépôt Git vide initialisé dans /home/naveichan/Documents/WCSchool/quetes/GIT/share_oops/.git/
  2. naveichan@naveilhan-gl552vw:~/Documents/WCSchool/quetes/GIT/share_oops$ touch index.html
  3. naveichan@naveilhan-gl552vw:~/Documents/WCSchool/quetes/GIT/share_oops$ git add .
  4. naveichan@naveilhan-gl552vw:~/Documents/WCSchool/quetes/GIT/share_oops$ git commit -m "Create index.html"
  5. [master (commit racine) 849e0c3] Create index.html
  6. 1 file changed, 0 insertions(+), 0 deletions(-)
  7. create mode 100644 index.html
  8. naveichan@naveilhan-gl552vw:~/Documents/WCSchool/quetes/GIT/share_oops$ git add .
  9. naveichan@naveilhan-gl552vw:~/Documents/WCSchool/quetes/GIT/share_oops$ git commit -m "Add title"
  10. [master 1f15be2] Add title
  11. 1 file changed, 9 insertions(+)
  12. naveichan@naveilhan-gl552vw:~/Documents/WCSchool/quetes/GIT/share_oops$ git add .
  13. naveichan@naveilhan-gl552vw:~/Documents/WCSchool/quetes/GIT/share_oops$ git commit -m "Add title"
  14. [master 6d3e36a] Add title
  15. 1 file changed, 3 insertions(+), 1 deletion(-)
  16. naveichan@naveilhan-gl552vw:~/Documents/WCSchool/quetes/GIT/share_oops$ git log --oneline
  17. 6d3e36a (HEAD -> master) Add title
  18. 1f15be2 Add title
  19. 849e0c3 Create index.html
  20. naveichan@naveilhan-gl552vw:~/Documents/WCSchool/quetes/GIT/share_oops$ git add .
  21. naveichan@naveilhan-gl552vw:~/Documents/WCSchool/quetes/GIT/share_oops$ git commit -m "change the world"
  22. [master 700f731] change the world
  23. 1 file changed, 4 insertions(+), 1 deletion(-)
  24. naveichan@naveilhan-gl552vw:~/Documents/WCSchool/quetes/GIT/share_oops$ git log --oneline
  25. 700f731 (HEAD -> master) change the world
  26. 6d3e36a Add title
  27. 1f15be2 Add title
  28. 849e0c3 Create index.html
  29. naveichan@naveilhan-gl552vw:~/Documents/WCSchool/quetes/GIT/share_oops$ git revert 700f731
  30. [master ce34f28] Revert "change the world"
  31. 1 file changed, 1 insertion(+), 4 deletions(-)
  32. naveichan@naveilhan-gl552vw:~/Documents/WCSchool/quetes/GIT/share_oops$ git log --online
  33. fatal: argument non reconnu : --online
  34. naveichan@naveilhan-gl552vw:~/Documents/WCSchool/quetes/GIT/share_oops$ git log --oneline
  35. ce34f28 (HEAD -> master) Revert "change the world"
  36. 700f731 change the world
  37. 6d3e36a Add title
  38. 1f15be2 Add title
  39. 849e0c3 Create index.html
  40. naveichan@naveilhan-gl552vw:~/Documents/WCSchool/quetes/GIT/share_oops$ git revert 6d3e36a
  41. [master 51bccde] Revert "Add title"
  42. 1 file changed, 1 insertion(+), 3 deletions(-)
  43. naveichan@naveilhan-gl552vw:~/Documents/WCSchool/quetes/GIT/share_oops$ git log --oneline
  44. 51bccde (HEAD -> master) Revert "Add title"
  45. ce34f28 Revert "change the world"
  46. 700f731 change the world
  47. 6d3e36a Add title
  48. 1f15be2 Add title
  49. 849e0c3 Create index.html
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement