How to work with release in git?

1

Is GitHub's release feature a platform or Git resource? I ask this because I did not see this feature on Bitbucket.

    
asked by anonymous 09.03.2018 / 22:25

1 answer

2

The release feature is platform-level, but it is conceptually applied in Git through the creation of tags, which are stable versions available for users to use. Thus, what github calls the release is nothing more than a platform feature to make Git tags available.

  

References:

     

link

    
09.03.2018 / 22:47