Skip to content

Commit 9f0c37e

Browse files
authored
fixing markdown linter issues (#469)
* fixing markdown linter issues
1 parent 01d0fc4 commit 9f0c37e

File tree

1 file changed

+30
-23
lines changed

1 file changed

+30
-23
lines changed

README.md

Lines changed: 30 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,63 @@
11
# Node CLI for Azure DevOps
22

3-
> NOTE: If you are looking for the new Azure DevOps CLI, see [vsts-cli](https://github.com/microsoft/vsts-cli)
3+
> NOTE: If you are looking for the new _Azure DevOps CLI_, see [vsts-cli](https://github.com/microsoft/vsts-cli)
44
55
[![NPM version](https://badge.fury.io/js/tfx-cli.svg)](http://badge.fury.io/js/tfx-cli)
66

7-
Command utility for interacting with Microsoft Team Foundation Server and Azure DevOps Services (formerly VSTS). It is cross platform and supported on Windows, OS X, and Linux.
7+
This is a command-line utility for interacting with _Microsoft Team Foundation Server_ and _Azure DevOps Services_ (formerly _VSTS_). It is cross platform and supported on _Windows_, _MacOS_, and _Linux_.
88

99
## Setup
1010

11-
First, download and install [Node.js](http://nodejs.org) 4.0.x or later and NPM (included with the installer)
11+
First, download and install [Node.js](http://nodejs.org) 4.0.x or later and npm (included with the installer)
1212

1313
### Linux/OSX
14+
1415
```bash
1516
sudo npm install -g tfx-cli
1617
```
1718

1819
### Windows
20+
1921
```bash
2022
npm install -g tfx-cli
2123
```
2224

2325
## Commands
2426

25-
To see a list of commands:
26-
```
27+
To see the list of commands:
28+
29+
```bash
2730
tfx
2831
```
2932

3033
For help with an individual command:
31-
```
34+
35+
```bash
3236
tfx <command> --help
3337
```
3438

3539
> Help info is dynamically generated, so it should always be the most up-to-date authority.
3640
3741
### Command sets
3842

39-
* `tfx build` ([builds](docs/builds.md)): Queue, view, and get details for builds
40-
* `tfx build tasks` ([build tasks](docs/buildtasks.md)): Create, list, upload and delete build tasks
41-
* `tfx extension` ([extensions](docs/extensions.md)): Package, manage, publish Team Foundation Server / Azure DevOps extensions
43+
* `tfx build` ([builds](docs/builds.md)): Queue, view, and get details for builds.
44+
* `tfx build tasks` ([build tasks](docs/buildtasks.md)): Create, list, upload and delete build tasks.
45+
* `tfx extension` ([extensions](docs/extensions.md)): Package, manage, publish _Team Foundation Server_ / _Azure DevOps_ extensions.
4246
* `tfx workitem` ([work items](docs/workitems.md)): Create, query and view work items.
4347

4448
### Login
4549

46-
To avoid providing credentials with every command, you can login once. Currently supported credential types: Personal Access Tokens and basic auth credentials.
50+
To avoid providing credentials with every command, you can login once. Currently supported credential types: _Personal Access Tokens_ and _basic authentication credentials_.
4751

4852
> NTLM support is under consideration
49-
53+
>
5054
> Warning! Using this feature will store your login credentials on disk in plain text.
51-
52-
> To skip certificate validation connecting to On-Prem Azure DevOps Server you can use parameter `--skip-cert-validation`
55+
>
56+
> To skip certificate validation connecting to on-prem _Azure DevOps Server_ use the `--skip-cert-validation` parameter.
5357
5458
#### Personal access token
5559

56-
Start by [creating a personal access token](http://roadtoalm.com/2015/07/22/using-personal-access-tokens-to-access-visual-studio-online) and paste it into the login command.
60+
Start by [creating a Personal Access Token](http://roadtoalm.com/2015/07/22/using-personal-access-tokens-to-access-visual-studio-online) and paste it into the login command.
5761

5862
```bash
5963
~$ tfx login
@@ -66,16 +70,16 @@ Logged in successfully
6670

6771
Examples of valid URLs are:
6872

69-
* `https://marketplace.visualstudio.com`
73+
* `https://marketplace.visualstudio.com`
7074
* `https://youraccount.visualstudio.com/DefaultCollection`
7175

7276
#### Basic auth
7377

74-
You can alternatively use basic auth by passing `--auth-type basic` (see [Configuring Basic Auth](docs/configureBasicAuth.md)).
78+
You can also use basic authentication by passing the `--auth-type basic` parameter (see [Configuring Basic Auth](docs/configureBasicAuth.md) for details).
7579

7680
### Settings cache
7781

78-
To avoid providing other options in every command, you can save options out to a settings file by adding the `--save` flag.
82+
To avoid providing options with every command, you can save them to a settings file by adding the `--save` flag.
7983

8084
```bash
8185
~$ tfx build list --project MyProject --definition-name println --top 5 --save
@@ -100,30 +104,33 @@ status : NotStarted
100104
queue time : Fri Aug 21 2015 15:07:49 GMT-0400 (Eastern Daylight Time)
101105
```
102106

103-
If you used `--save` to set a default value for an option, you may need to override it by explicitly providing the option with a different value. You can clear any saved settings by running `tfx reset`.
107+
If you used `--save` to set a default value for an option, you may need to override it by explicitly providing a different value. You can clear any saved settings by running `tfx reset`.
104108

105109
### Troubleshooting
106110

107-
To see detailed tracing output, you can set a value for the `TFX_TRACE` environment value and then run commands. That may offer a clue into the problem (and will certainly help if logging an issue).
111+
To see detailed tracing output, set a value for the `TFX_TRACE` environment variable and then run commands. This may provide clues to the issue and can be helpful when logging an issue.
112+
113+
### Troubleshooting on Linux/OSX
108114

109-
### Linux/OSX
110115
```bash
111116
export TFX_TRACE=1
112117
```
113118

114-
### Windows
119+
### Troubleshooting on Windows
120+
115121
```bash
116122
set TFX_TRACE=1
117123
```
118124

119-
### PowerShell
125+
#### PowerShell
126+
120127
```bash
121128
$env:TFX_TRACE=1
122129
```
123130

124131
## Contributing
125132

126-
We take contributions and fixes via Pull Request. [Read here](docs/contributions.md) for the details.
133+
We accept contributions and fixes via Pull Requests. Please read the [Contributions guide](docs/contributions.md) for more details.
127134

128135
## Code of Conduct
129136

0 commit comments

Comments
 (0)