summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAzcobu <81782124+Azcobu@users.noreply.github.com>2021-05-25 01:17:38 +0930
committerGitHub <noreply@github.com>2021-05-24 17:47:38 +0200
commitcf6b8c4de86c8b32a029a8ea46a823456f661e6b (patch)
tree17aba6d8dfdfcd675ae9e9861012bfb842a3fac8 /docs
parent0d77bf46519fec61652afce5804ea50563c129fb (diff)
downloadwiki-cf6b8c4de86c8b32a029a8ea46a823456f661e6b.tar.gz
wiki-cf6b8c4de86c8b32a029a8ea46a823456f661e6b.tar.bz2
wiki-cf6b8c4de86c8b32a029a8ea46a823456f661e6b.zip
docs: Added info on reverting PRs (#496)
This should help newer users who are still unsure of the PR process to revert changes made after testing a PR. Note - I'm not knowledgeable with git and there are probably better ways to do this. Any improvements welcome.
Diffstat (limited to 'docs')
-rw-r--r--docs/How-to-test-a-PR.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/How-to-test-a-PR.md b/docs/How-to-test-a-PR.md
index f4eb8c6..8790629 100644
--- a/docs/How-to-test-a-PR.md
+++ b/docs/How-to-test-a-PR.md
@@ -137,3 +137,7 @@ You should write:
![image](https://user-images.githubusercontent.com/75517/52176867-44e80480-27b9-11e9-9f43-070e4edcb77d.png)
+## Finishing Testing
+
+Once you have left a test report, you will want to revert your AC installation back to the base state for further testing. To do this, use `git reset --hard` to remove all unstaged changes, followed by `git checkout master` to go back to the master branch. To tidy up, you can also use `git clean -fd` to get rid of any untracked files. Finally, you can then type `git status` to make sure everything is back to normal.
+