Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. $ git clone https://github.com/andercarrera/exerciseSE.git
  2. 16. (Developer 2) Change the content of File1.txt in new_feature branch
  3. $ git add --all (o los files que se quieran añadir)
  4. $ git commit -m "ChangesManza"
  5. $ git checkout newBranch
  6. (change content)
  7. 17. (Developer 2) Create a new file, “File3.txt”
  8. $ git add file3.txt (o los files que se quieran añadir)
  9. $ git commit -m "file3manza"
  10. 18. (Developer 2) Create a new branch “hot-fix” starting from new-feature branch
  11. $ git branch hot-fix
  12. 19. (Developer 2) Create a new file, “File4.txt”
  13. $git checkout hot-fix
  14.  $git add file4.txt
  15. $git commit -m file4manza
  16. 20. (Developer 2) Upload the changes to the remote repository
  17. $ git push --all
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement