From 8e51ad64952266c5d5549b2271d53d327c5ecedf Mon Sep 17 00:00:00 2001 From: John Blischak Date: Sat, 8 Aug 2020 23:05:51 -0400 Subject: [PATCH] Add instructions. --- README.md | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..171d1b6 --- /dev/null +++ b/README.md @@ -0,0 +1,47 @@ +# Computing tips + +This repository contains computing tips for scientists from scientists. Follow the instructions below to add your own! + +## Instructions + +Fill in the blanks (`___`) with your information. + +1. Fork the repository to your account + +1. Clone your fork of the repository (fill in your username) + + ``` + git clone https://github.com/___/computing-tips + ``` + +1. Navigate to the Git repository + + ``` + cd computing-tips + ``` + +1. Write your tip in a file. Give it an informative name. + + ``` + nano ___ + ``` + +1. Add the file + + ``` + git add ___ + ``` + +1. Commit the file. Write a descriptive message. + + ``` + git commit + ``` + +1. Push to your fork on GitHub + + ``` + git push origin master + ``` + +1. Open a Pull Request