-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 8e51ad6
Showing
1 changed file
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |