You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 25, 2020. It is now read-only.
Description
As an avid coder and a user of the Git VCS, I frequently find myself writing code and making changes to projects that I end up having to throw away. Often times, this results in me having to rollback to a certain commit, before I created my feature-in-vain. This results in me having to go through the laborious process of running the git log command to find the commit hash I want to rollback to, then running git checkout [COMMIT HASH].
It would be a great if visual git made this process easier for me, by allowing me to checkout and rollback to certain commits.
Acceptance criteria
Users can roll back to certain commits in their commit history on an open repository.
It should be made clear to the user what git command is run when rolling back.
Pointers / Solutions
I would suggest adding a button to the modal which appears when a user clicks on a commit in the graph screen. The button should run the command: git checkout [Commit hash]
Suggested solution:
The text was updated successfully, but these errors were encountered:
Good idea - since VisualGit is also about learning Git commands might be good to make it clear that it uses git checkout instead of git revert or git reset because of how differently each command handles undoing commits. Approved!
Description
As an avid coder and a user of the Git VCS, I frequently find myself writing code and making changes to projects that I end up having to throw away. Often times, this results in me having to rollback to a certain commit, before I created my feature-in-vain. This results in me having to go through the laborious process of running the
git log
command to find the commit hash I want to rollback to, then runninggit checkout [COMMIT HASH]
.It would be a great if visual git made this process easier for me, by allowing me to checkout and rollback to certain commits.
Acceptance criteria
Users can roll back to certain commits in their commit history on an open repository.
It should be made clear to the user what git command is run when rolling back.
Pointers / Solutions
git checkout [Commit hash]
Suggested solution:
The text was updated successfully, but these errors were encountered: