#commit
2 posts tagged commit. Clear filter
-
How to Recover a Mistakenly Deleted Branch
Workflow git checkout -b newbranchname do some work and commit changed git checkout master git branch -d newbranchname doh... i meant to merge first Fortunately, you can easily recover from this...
-
How to Remove Your Last Git Commit
Remove your last commit (if you haven't pushed yet) To see changes that have been committed and their position in HEAD And to undo your previous reset and advance the cursor to the reference...