Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
744
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.36 KB | None | 0 0
  1. | ~/repos/remote1 @ Dougs-MacBook-Pro (dougnaphas) [11:17:29] master Δ
  2. | 4013 => git add f1
  3. ________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
  4. | ~/repos/remote1 @ Dougs-MacBook-Pro (dougnaphas) [11:17:31] master Δ
  5. | 4014 => git commit
  6. [master f4cd5ac] Add a file to be committed on origin/abc b1
  7. 1 file changed, 1 insertion(+)
  8. create mode 100644 f1
  9. ________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
  10. | ~/repos/remote1 @ Dougs-MacBook-Pro (dougnaphas) [11:18:00] master
  11. | 4015 => git push origin/abc master:b1
  12. Enumerating objects: 4, done.
  13. Counting objects: 100% (4/4), done.
  14. Delta compression using up to 12 threads
  15. Compressing objects: 100% (3/3), done.
  16. Writing objects: 100% (3/3), 339 bytes | 339.00 KiB/s, done.
  17. Total 3 (delta 1), reused 0 (delta 0)
  18. remote: Resolving deltas: 100% (1/1), completed with 1 local object.
  19. To github.com:douglasnaphas/remote2.git
  20. 60f579b..f4cd5ac master -> b1
  21. ________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
  22. | ~/repos/remote1 @ Dougs-MacBook-Pro (dougnaphas) [11:18:31] master
  23. | 4016 => git branch -r -vvv
  24. origin/HEAD -> origin/master
  25. origin/abc/b1 f4cd5ac Add a file to be committed on origin/abc b1
  26. origin/b2 60f579b Initial commit
  27. origin/master 60f579b Initial commit
  28. ________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
  29. | ~/repos/remote1 @ Dougs-MacBook-Pro (dougnaphas) [11:18:36] master
  30. | 4017 => echo "this will be committed to remote origin, branch abc/b1" > f2
  31. ________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
  32. | ~/repos/remote1 @ Dougs-MacBook-Pro (dougnaphas) [11:19:06] master Δ
  33. | 4018 => git add f2
  34. ________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
  35. | ~/repos/remote1 @ Dougs-MacBook-Pro (dougnaphas) [11:19:08] master Δ
  36. | 4019 => git commit
  37. [master b36fcc2] Add a file for remote origin, branch abc/b1
  38. 1 file changed, 1 insertion(+)
  39. create mode 100644 f2
  40. ________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
  41. | ~/repos/remote1 @ Dougs-MacBook-Pro (dougnaphas) [11:19:43] master
  42. | 4020 => git push origin master:abc/b1
  43. Enumerating objects: 7, done.
  44. Counting objects: 100% (7/7), done.
  45. Delta compression using up to 12 threads
  46. Compressing objects: 100% (6/6), done.
  47. Writing objects: 100% (6/6), 699 bytes | 699.00 KiB/s, done.
  48. Total 6 (delta 1), reused 0 (delta 0)
  49. remote: Resolving deltas: 100% (1/1), done.
  50. To github.com:douglasnaphas/remote1.git
  51. 60f579b..b36fcc2 master -> abc/b1
  52. ________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
  53. | ~/repos/remote1 @ Dougs-MacBook-Pro (dougnaphas) [11:19:57] master
  54. | 4021 => git branch -r -vvv
  55. origin/HEAD -> origin/master
  56. origin/abc/b1 b36fcc2 Add a file for remote origin, branch abc/b1
  57. origin/b2 60f579b Initial commit
  58. origin/master 60f579b Initial commit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement