How to undo a commit or edit it? Its possible to unrelated a user story related to commit?

0
How to undo a commit or edit it? How is possible to unrelated  a user story related to commit?
asked
1 answers
2

You can undo a commit by reverse merging a change: 

 

 

What this basically does is it will add changes to your project that revert what you did in the previous commit. You can then commit those changes again. You'll still see it in your commit history, but the changes will be undone.

answered