Loading

Paste #pvpcqhw1f

  1. $ git lg | head -5
  2. * d07bf7a (HEAD, name2) vflavkbat
  3. * c85f14a (name1) cvfras
  4. * da2ef1b name1
  5. *   3da2349 (upstream/master) Merge pull request #89 from Alberth289346/rework_shop_placer
  6.  
  7. $ git co name1
  8. Switched to branch 'name1'
  9.  
  10. $  gvim src/map.h
  11. $ git add src/map.h
  12. $  git ci
  13. [name1 409b9f8] argte
  14.  1 file changed, 1 insertion(+)
  15.  
  16. $  git lg | head -10
  17. * 409b9f8 (HEAD, name1) argte
  18. * c85f14a cvfras
  19. * da2ef1b name1
  20. *   3da2349 (upstream/master) Merge pull request #89 from Alberth289346/rework_shop_placer
  21. |\  
  22. | * 7c05c14 (upstream/pr/89) Fix: Improve wording in the titlebar of the build ride window.
  23. | * ca2f913 Cleanup: Remove old shop placement mouse mode.
  24.  
  25. $  git co name2
  26. Switched to branch 'name2'
  27.  
  28. $  git lg | head -10
  29. * d07bf7a (HEAD, name2) vflavkbat
  30. * c85f14a cvfras                          <-- no more 'name1' branch name here!
  31. * da2ef1b name1
  32. *   3da2349 (upstream/master) Merge pull request #89 from Alberth289346/rework_shop_placer
  33. |\  
  34. | * 7c05c14 (upstream/pr/89) Fix: Improve wording in the titlebar of the build ride window.
  35. | * ca2f913 Cleanup: Remove old shop placement mouse mode.

Comments