PedalaVasile

git commands

Feb 13th, 2020
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. La inceput:
  2. cd ProjectDirectory
  3. git init
  4. git add .
  5. git commit -m "Mesaj pentru commit"
  6. git remote add origin HTTPSLink
  7. git push origin master
  8.  
  9. Pentru update:
  10. cd ProjectDirectory
  11. git add .
  12. git commit -m "Mesaj pentru commit"
  13. git push origin master  // eventual pui --force dupa daca da eroare ca ai ceva in plus in repo de pe github si nu in folderu local
Add Comment
Please, Sign In to add comment