jenka

Quête Git 5

Mar 5th, 2021 (edited)
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. jenho@LAPTOP-Q90KLVS3 MINGW64 ~/Documents/Push-pull (main)
  2. $ git add .
  3.  
  4. jenho@LAPTOP-Q90KLVS3 MINGW64 ~/Documents/Push-pull (main)
  5. $ git commit -m "tast"
  6. [main 0208152] tast
  7. 1 file changed, 1 insertion(+), 1 deletion(-)
  8.  
  9. jenho@LAPTOP-Q90KLVS3 MINGW64 ~/Documents/Push-pull (main)
  10. $ git pull
  11. Already up to date.
  12.  
  13. jenho@LAPTOP-Q90KLVS3 MINGW64 ~/Documents/Push-pull (main)
  14. $ git pull
  15. remote: Enumerating objects: 5, done.
  16. remote: Counting objects: 100% (5/5), done.
  17. remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0
  18. Unpacking objects: 100% (3/3), 648 bytes | 49.00 KiB/s, done.
  19. From https://github.com/JenniferHomsy/Push-pull
  20. b03a58b..41e4933 main -> origin/main
  21. Auto-merging README.md
  22. CONFLICT (content): Merge conflict in README.md
  23. Automatic merge failed; fix conflicts and then commit the result.
  24.  
  25. jenho@LAPTOP-Q90KLVS3 MINGW64 ~/Documents/Push-pull (main|MERGING)
  26. $ git status
  27. On branch main
  28. Your branch and 'origin/main' have diverged,
  29. and have 1 and 1 different commits each, respectively.
  30. (use "git pull" to merge the remote branch into yours)
  31.  
  32. You have unmerged paths.
  33. (fix conflicts and run "git commit")
  34. (use "git merge --abort" to abort the merge)
  35.  
  36. Unmerged paths:
  37. (use "git add <file>..." to mark resolution)
  38. both modified: README.md
  39.  
  40. no changes added to commit (use "git add" and/or "git commit -a")
  41.  
  42. jenho@LAPTOP-Q90KLVS3 MINGW64 ~/Documents/Push-pull (main|MERGING)
  43. $ git add README.md
  44.  
  45. jenho@LAPTOP-Q90KLVS3 MINGW64 ~/Documents/Push-pull (main|MERGING)
  46. $ git commit -m "gerer modif"
  47. [main c5f9046] gerer modif
  48.  
  49. jenho@LAPTOP-Q90KLVS3 MINGW64 ~/Documents/Push-pull (main)
  50. $ git pull
  51. Already up to date.
  52.  
  53. jenho@LAPTOP-Q90KLVS3 MINGW64 ~/Documents/Push-pull (main)
  54. $ git push
  55. Enumerating objects: 10, done.
  56. Counting objects: 100% (10/10), done.
  57. Delta compression using up to 8 threads
  58. Compressing objects: 100% (2/2), done.
  59. Writing objects: 100% (6/6), 540 bytes | 270.00 KiB/s, done.
  60. Total 6 (delta 0), reused 0 (delta 0), pack-reused 0
  61. To https://github.com/JenniferHomsy/Push-pull.git
  62. 41e4933..c5f9046 main -> main
  63.  
  64.  
Add Comment
Please, Sign In to add comment