Advertisement
lamiastella

git push doesn't work Everything up-to-date

Aug 31st, 2021
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. (fashcomp) [jalal@goku fashion-compatibility]$ git status
  2. # On branch master
  3. # Your branch is ahead of 'origin/master' by 2 commits.
  4. # (use "git push" to publish your local commits)
  5. #
  6. # Changes not staged for commit:
  7. # (use "git add <file>..." to update what will be committed)
  8. # (use "git checkout -- <file>..." to discard changes in working directory)
  9. #
  10. # modified: Resnet_18.py
  11. # modified: __pycache__/Resnet_18.cpython-38.pyc
  12. # modified: main.py
  13. #
  14. # Untracked files:
  15. # (use "git add <file>..." to include in what will be committed)
  16. #
  17. # .gitignore
  18. # __pycache__/custom_resnet18.cpython-38.pyc
  19. no changes added to commit (use "git add" and/or "git commit -a")
  20. (fashcomp) [jalal@goku fashion-compatibility]$ git status
  21. # On branch master
  22. # Your branch is ahead of 'origin/master' by 2 commits.
  23. # (use "git push" to publish your local commits)
  24. #
  25. # Changes not staged for commit:
  26. # (use "git add <file>..." to update what will be committed)
  27. # (use "git checkout -- <file>..." to discard changes in working directory)
  28. #
  29. # modified: Resnet_18.py
  30. # modified: __pycache__/Resnet_18.cpython-38.pyc
  31. # modified: main.py
  32. #
  33. # Untracked files:
  34. # (use "git add <file>..." to include in what will be committed)
  35. #
  36. # .gitignore
  37. no changes added to commit (use "git add" and/or "git commit -a")
  38. (fashcomp) [jalal@goku fashion-compatibility]$ git add Resnet_18.py
  39. (fashcomp) [jalal@goku fashion-compatibility]$ git add main.py
  40. (fashcomp) [jalal@goku fashion-compatibility]$ git add .gitignore
  41. (fashcomp) [jalal@goku fashion-compatibility]$ git commit -m "changed architecture of Resnet_18 and added basic att"
  42. [master ab33b48] changed architecture of Resnet_18 and added basic att
  43. 3 files changed, 88 insertions(+), 4 deletions(-)
  44. create mode 100644 .gitignore
  45. (fashcomp) [jalal@goku fashion-compatibility]$ git push
  46. Everything up-to-date
  47. (fashcomp) [jalal@goku fashion-compatibility]$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement