Revert "Fixing README.md file for github."

This reverts commit 908cff4847cf48a62fdf7bb57d776ef165db29bc.

Change was incomplete.

Change-Id: Idf281457be835f5c0a2504aa37405b749834ab16
diff --git a/README.md b/README.md
index 287a375..65f63d2 100644
--- a/README.md
+++ b/README.md
@@ -66,7 +66,7 @@
 3. Build ONOS with Buck
 ```bash
 $ cd $ONOS_ROOT
-$ bazel build onos
+$ onos-buck build onos [--show-output]
 ```
 
 ONOS currently uses a modified version of Buck (`onos-buck`), which has been packaged with ONOS. Please use this version until our changes have been upstreamed and released as part of an official Buck release. 
@@ -79,10 +79,10 @@
 To run ONOS locally on the development machine, simply run the following command:
 
 ```bash
-$ bazel run onos-local [-- [clean] [debug]]
+$ onos-buck run onos-local [-- [clean] [debug]]
 ```
 
-or simpler one:
+or simplier one:
 
 ```bash
 $ ok [clean] [debug]
@@ -107,16 +107,16 @@
 
 ### Unit Tests
 
-To run ONOS unit tests, run the following command:
+To run ONOS unit tests, including code Checkstyle validation, run the following command:
 
 ```bash
-$ bazel query '\''tests(//...)'\'' | xargs bazel test
+$ onos-buck test
 ```
 
-Or better yet, to run code Checkstyle and all unit tests use the following convenience alias:
+Or more specific tests:
 
 ```bash
-$ ot
+$ onos-buck test [buck-test-rule]
 ```
 
 ## Contributing