Skip to content

Commit

Permalink
Merge pull request #642 from Manouchehri/patch-1
Browse files Browse the repository at this point in the history
Create CONTRIBUTING.md
  • Loading branch information
jackchammons authored Jul 11, 2016
2 parents 35ba260 + 6c6fb8a commit 32a1325
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
When reporting a bug, please be sure post the following information:

1. The build of Windows you're running. Example:
```cmd
C:\Users\Dave>ver
Microsoft Windows [Version 10.0.14385]
```

2. The exact command you tried to run. Example:
```cmd
[email protected]:~$ ps aux
Error: /proc must be mounted
To mount /proc at boot you need an /etc/fstab line like:
proc /proc proc defaults
In the meantime, run "mount proc /proc -t proc"
```

3. The strace log of the command that failed to run. Please paste this into [Gist](https://gist.github.com/) or another paste service. Example:
```cmd
[email protected]:~$ strace whoami
execve("/usr/bin/whoami", ["whoami"], [/* 16 vars */]) = 0
brk(NULL) = 0x2423000
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
.... this file will be very large ....
close(2) = 0
exit_group(0) = ?
+++ exited with 0 +++
```

0 comments on commit 32a1325

Please sign in to comment.