Skip to content

Commit

Permalink
Simple Usage documented
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinobee1 committed May 22, 2019
1 parent 16ec993 commit 2235a20
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,30 @@

Template containing common files and folder structure for creating new C# repositories.

TODO build status
## Simple Usage

To create a Git repository for a new C# project follow the steps below:

```Shell
# Clone the CSharp template repository and step into the new folder
git clone https://github.com/CluedIn-io/CluedIn.CSharp.Template.git CluedIn.ProjectName
cd CluedIn.ProjectName

# Rename the Git remote to template
git remote rename origin template
```

Create the CluedIn.ProjectName repository under the CluedIn organization in GitHub then perform the following steps:

```Shell
# Add the new GitHub repository as the origin remote
git remote add origin https://github.com/CluedIn-io/CluedIn.ProjectName

# Push the content to the new Git repository
git push
```

Substitute _CluedIn.ProjectName_ for your project name.

-----

Expand Down

0 comments on commit 2235a20

Please sign in to comment.