Advertisement
Guest User

Nothing Has Worked.. How can I make this work?

a guest
Jun 7th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.21 KB | None | 0 0
  1. ################################################################################
  2. # User Story: User operating git wants to formalize tag names nd associated #
  3. # messages across git repositories #
  4. # #
  5. # Use Case: User executes $ git tag $tag-name (eg: git tag $initial-commit) #
  6. # while in any local get repository #
  7. # #
  8. # Result: $initial-commit is exapanded, creating a git tag with "tag-name" #
  9. # as it's name and "tag message" as it's message #
  10. # #
  11. # Status: The source command seems to think it's a command, fails to #
  12. # find it, and produces and error. #
  13. # #
  14. # - Running $ git tag $<tag-name> does create tags but they are not #
  15. # as intended. The tag message seems to carry #
  16. # down into the succeeding 3rd and 4th aliases below it and #
  17. # applies the first message to all / any #
  18. ################################################################################
  19.  
  20.  
  21. ## Git Tags : Usege --> $ git tag <tagname-in-list> ##
  22.  
  23. "initial-commit"='-m "Initial Commit" initial-commit' # Differs from the two lines below bc I was troubleshooting.
  24. 'new-file'='-m "A new file was added" new-file'
  25. 'readme'='-m "Readme File" readme'
  26.  
  27. # I've also tried..
  28.  
  29. # initial-commit="-m "Initial Commit" initial-commit"
  30. # new-file="-m "A new file was added" new-file"
  31. # readme="-m "Readme File" readme"
  32.  
  33. # initial-commit='-m "Initial Commit" initial-commit'
  34. # new-file='-m "A new file was added" new-file'
  35. # readme='-m "Readme File" readme'
  36.  
  37. # initial-commit=\"\-m "Initial Commit" initial-commit\"
  38. # new-file=\"-m "A new file was added" new-file\"
  39. # readme=\"-m "Readme File" readme\"
  40.  
  41. # initial-commit="-m \"Initial Commit\" initial-commit"
  42. # new-file="-m \"A new file was added\" new-file"
  43. # readme="-m \"Readme File\" readme"
  44.  
  45. # initial-commit='-m \"Initial Commit\" initial-commit'
  46. # new-file='-m \"A new file was added\" new-file'
  47. # readme='-m \"Readme File\" readme'
  48.  
  49. # `initial-commit`="-m "Initial Commit" `initial-commit`"
  50. # `new-file`="-m "A new file was added" `new-file`"
  51. # `readme`="-m "`readme` File" `readme`"
  52.  
  53. # `initial-commit`='-m "Initial Commit" `initial-commit`'
  54. # `new-file`='-m "A new file was added" `new-file`'
  55. # `readme`='-m "`readme` File" `readme`'
  56.  
  57. # `initial-commit`=\"\-m "Initial Commit" `initial-commit`\"
  58. # `new-file`=\"-m "A new file was added" `new-file`\"
  59. # `readme`=\"-m "`readme` File" `readme`\"
  60.  
  61. # `initial-commit`="-m \"Initial Commit\" `initial-commit`"
  62. # `new-file`="-m \"A new file was added\" `new-file`"
  63. # `readme`="-m \"`readme` File\" `readme`"
  64.  
  65. # `initial-commit`='-m \"Initial Commit\" `initial-commit`'
  66. # `new-file`='-m \"A new file was added\" `new-file`'
  67. # `readme`='-m \"`readme` File\" `readme`'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement