Git : commit all changes in current directory tree and push to default repository from terminal

  1. #see current changes
  2. git satus
  3. #add changed things to local repo
  4. git add -A
  5. #commit all changes
  6. git commit -a
  7. #see remote repo
  8. git remote
  9. #send to remote repo
  10. git push

No comments:

Post a Comment