Advertisement
juliusDum

quête 2 git

Mar 15th, 2020
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. ➜ documents quête-2-git
  2. ➜ quête-2-git ls
  3. ➜ quête-2-git git clone https://github.com/juliusDum/-sharezza-social.git
  4. Cloning into '-sharezza-social'...
  5. remote: Enumerating objects: 6, done.
  6. remote: Counting objects: 100% (6/6), done.
  7. remote: Compressing objects: 100% (4/4), done.
  8. remote: Total 6 (delta 0), reused 0 (delta 0), pack-reused 0
  9. Unpacking objects: 100% (6/6), done.
  10. ➜ quête-2-git ls
  11. -sharezza-social
  12. ➜ quête-2-git cd -sharezza-social
  13. ➜ -sharezza-social git:(master) ls
  14. README.md index.html
  15. ➜ -sharezza-social git:(master) code .
  16. ➜ -sharezza-social git:(master) gst
  17. On branch master
  18. Your branch is up to date with 'origin/master'.
  19.  
  20. Changes not staged for commit:
  21. (use "git add <file>..." to update what will be committed)
  22. (use "git restore <file>..." to discard changes in working directory)
  23. modified: index.html
  24.  
  25. no changes added to commit (use "git add" and/or "git commit -a")
  26. ➜ -sharezza-social git:(master) ✗ git add index.html
  27. ➜ -sharezza-social git:(master) ✗ gst
  28. On branch master
  29. Your branch is up to date with 'origin/master'.
  30.  
  31. Changes to be committed:
  32. (use "git restore --staged <file>..." to unstage)
  33. modified: index.html
  34.  
  35. ➜ -sharezza-social git:(master) ✗ git commit -m "first commit"
  36. [master d770367] first commit
  37. 1 file changed, 2 insertions(+), 1 deletion(-)
  38. ➜ -sharezza-social git:(master) gst
  39. On branch master
  40. Your branch is ahead of 'origin/master' by 1 commit.
  41. (use "git push" to publish your local commits)
  42.  
  43. nothing to commit, working tree clean
  44. ➜ -sharezza-social git:(master) git push
  45. Enumerating objects: 5, done.
  46. Counting objects: 100% (5/5), done.
  47. Delta compression using up to 4 threads
  48. Compressing objects: 100% (3/3), done.
  49. Writing objects: 100% (3/3), 379 bytes | 379.00 KiB/s, done.
  50. Total 3 (delta 0), reused 0 (delta 0)
  51. To https://github.com/juliusDum/-sharezza-social.git
  52. 5fcfda5..d770367 master -> master
  53. ➜ -sharezza-social git:(master)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement