Skip to content

Commit 155a185

Browse files
Improve badges in README
1 parent 2681084 commit 155a185

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# GitProf
22

33
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
4-
[![PyPI](https://img.shields.io/pypi/v/gitprof)](https://pypi.org/project/gitprof)
5-
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/gitprof)
4+
[![PyPI](https://img.shields.io/pypi/v/gitprof?color=brightgreen)](https://pypi.org/project/gitprof)
5+
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/gitprof?color=blue)](https://pypi.org/project/gitprof)
66

77
## Introduction
88

9-
GitProf ("Git Profiles") is a tool which simplifies working with multiple Git accounts.
9+
GitProf ("Git Profiles") is a tool which simplifies working with multiple Git accounts/services.
1010

1111
GitProf helps you with:
1212

@@ -15,7 +15,7 @@ GitProf helps you with:
1515

1616
It solves the problems which you may experience when using multiple accounts/services:
1717

18-
- You can't clone a repository easily because your default SSH key is for a different account/service.
18+
- You can't clone a repository easily because your default SSH key is for a different account.
1919
- Once you clone the repository, local Git config values such as `user.email` need to be set correctly.
2020

2121
GitProf doesn't change your Git workflow; after using `gitprof clone` or `gitprof profile apply` on a repository, you don't need to interact with `gitprof` again for that repository.
@@ -46,15 +46,15 @@ GitProf stores *profiles* which contain the information required to configure re
4646
To clone a repository, just use `gitprof clone` instead of `git clone`. For example:
4747

4848
```bash
49-
>> gitprof clone git@github.com/some-profile/some-repo.git
49+
>> gitprof clone git@gitlab.com/some-profile/some-repo.git
5050

5151
### Choose a profile to clone with ###
5252
[0] github (GitHub)
5353
[2] gitlab (GitLab)
5454
[3] <CREATE NEW PROFILE>
5555
Enter a number from the list to choose an option [default=0]: 1
5656

57-
Cloning 'git@github.com/some-profile/some-repo.git' with profile: gitlab
57+
Cloning 'git@gitlab.com/some-profile/some-repo.git' with profile: gitlab
5858

5959
Setting local Git config values for 'some-repo'...
6060
Setting your Git name to 'MyUsername'...
@@ -68,7 +68,7 @@ Finished setting up your Git repository.
6868
If you have an existing repository whose config values you wish to change, you can `cd` into the repository and use `gitprof profile apply`. For example:
6969

7070
```bash
71-
>> cd my-repo
71+
>> cd some-repo
7272
>> gitprof profile apply
7373

7474
### Choose a profile to apply ###
@@ -95,4 +95,4 @@ python -m pip install -r requirements-dev.txt -r requirements.txt
9595
python setup.py sdist
9696
python setup.py bdist_wheel
9797
twine upload dist/*
98-
```
98+
```

0 commit comments

Comments
 (0)