Advertisement
zaafalla

git push

Nov 15th, 2019
325
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. C:\Users\Jerico B. Malco>cd desktop
  2.  
  3. C:\Users\Jerico B. Malco\Desktop>cd sample
  4.  
  5. C:\Users\Jerico B. Malco\Desktop\sample>git init
  6. Reinitialized existing Git repository in C:/Users/Jerico B. Malco/Desktop/sample/.git/
  7.  
  8. C:\Users\Jerico B. Malco\Desktop\sample>git add .
  9.  
  10. C:\Users\Jerico B. Malco\Desktop\sample>git commit -m "homework"
  11. [master 7599944] homework
  12. 1 file changed, 0 insertions(+), 0 deletions(-)
  13. create mode 100644 Scenario.docx
  14.  
  15. C:\Users\Jerico B. Malco\Desktop\sample>git push origin master
  16. Enumerating objects: 4, done.
  17. Counting objects: 100% (4/4), done.
  18. Delta compression using up to 4 threads
  19. Compressing objects: 100% (3/3), done.
  20. Writing objects: 100% (3/3), 11.19 KiB | 1.12 MiB/s, done.
  21. Total 3 (delta 0), reused 0 (delta 0)
  22. To https://github.com/zabynaann/sample.git
  23. 22149e2..7599944 master -> master
  24.  
  25. C:\Users\Jerico B. Malco\Desktop\sample>git status
  26. On branch master
  27. Your branch is up to date with 'origin/master'.
  28.  
  29. nothing to commit, working tree clean
  30.  
  31. C:\Users\Jerico B. Malco\Desktop\sample>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement