Undo that SVN add
In Subversion, to cancel an svn add example_folder command before committing to the repository, do not use svn delete or svn remove or made-up stuff like undo or cancel.Use the svn revert command:svn...
View ArticleOn fundamental database operations | drupal4hu
Link Title and URL: On fundamental database operations | drupal4huAs teached by many excellent usability books, confirm forms are wrong, they become habitual and are just a nuisance instead of...
View ArticleGit revert a commit
To revert a very simple commit, this is enough:git revert ba24a3fdeae4a3a034691308171d798d2ddbf93eWhere that long string of characters is the ID of the commit you are reverting.For a more careful...
View ArticleGit undo part of a commit
To revert an entire commit.git checkout <file> re-checkout <file>, overwriting any local changesShould be able to git add changed files that you are interested in committing the revised...
View Article