Skip to content

Commit 2b29f49

Browse files
author
Eugene Kalyada
committed
doc: (config) Update Readme instruction
Fixed Getting started section
1 parent e9dd3f4 commit 2b29f49

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@ Utility for making beautiful commit and check commit message format
44

55
## Getting Started
66

7-
1. Download the project, open it in Xcode and build.
8-
2. In Project navigator (left panel), open Products directory.
9-
3. Right-click on gitcom executable -> Show in Finder. Copy executable gitcom file into your project directory.
7+
1. Download the project, open it in Xcode.
8+
2. Change the Team Signing section in project file.
9+
3. Build and archive project.
10+
4. Open the directory with executable file.
11+
5. Run `./gitcom integrate git` to install app in your system (copy gitcom executable file into usr/loclal/bin directory. Allows to use **gitcom**, **git cm** and **git-cm** commands ).
1012

1113
## Usage
1214

@@ -27,7 +29,7 @@ To create default configuration file, run **gitcom generate-config**.
2729

2830
<details><summary><b>Default configuration file</b></summary>
2931

30-
```
32+
```json
3133
{
3234
"body" : {
3335
"request" : "Please enter a body of commit",
@@ -202,5 +204,5 @@ Configuration file structure:
202204

203205
### Validate commit
204206
Run **gitcom validate** command with commit message as argument for its validation.
205-
<br>Example: gitcom validate "build: (fix) subject|body|META:footer"
207+
<br>Example: `gitcom validate "build: (fix) subject|body|META:footer"`
206208

gitcom.xcodeproj/project.pbxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -369,19 +369,23 @@
369369
A1BA76972234448200806C32 /* Debug */ = {
370370
isa = XCBuildConfiguration;
371371
buildSettings = {
372+
CODE_SIGN_IDENTITY = "Mac Developer";
372373
CODE_SIGN_STYLE = Automatic;
373374
DEVELOPMENT_TEAM = 3LLP5BAPPE;
374375
PRODUCT_NAME = "$(TARGET_NAME)";
376+
PROVISIONING_PROFILE_SPECIFIER = "";
375377
SWIFT_VERSION = 4.2;
376378
};
377379
name = Debug;
378380
};
379381
A1BA76982234448200806C32 /* Release */ = {
380382
isa = XCBuildConfiguration;
381383
buildSettings = {
384+
CODE_SIGN_IDENTITY = "Mac Developer";
382385
CODE_SIGN_STYLE = Automatic;
383386
DEVELOPMENT_TEAM = 3LLP5BAPPE;
384387
PRODUCT_NAME = "$(TARGET_NAME)";
388+
PROVISIONING_PROFILE_SPECIFIER = "";
385389
SWIFT_VERSION = 4.2;
386390
};
387391
name = Release;

0 commit comments

Comments
 (0)