1
00:00:01,640 --> 00:00:06,710
Let's create a git repository and commit all of our work to it, as I mentioned earlier, this is not

2
00:00:06,710 --> 00:00:10,280
strictly required, but I suspect that you're going to be using it on your own projects.

3
00:00:10,610 --> 00:00:13,520
I just want to make sure that we kind of mirror what reality really is.

4
00:00:13,940 --> 00:00:19,100
One thing to be aware of is that whenever you generate a ReachOut project, a repository is created

5
00:00:19,100 --> 00:00:20,580
inside there for you automatically.

6
00:00:21,260 --> 00:00:22,030
We don't really want that.

7
00:00:22,040 --> 00:00:22,600
In this case.

8
00:00:22,610 --> 00:00:26,450
I want to track all of our different sub packages instead of one single repository.

9
00:00:26,870 --> 00:00:31,670
The first thing I'm going to do is to go into that local client directory inside of my terminal and

10
00:00:31,670 --> 00:00:34,400
I'm going to remove the existing git repository in their.

11
00:00:35,350 --> 00:00:36,310
So at my terminal.

12
00:00:38,440 --> 00:00:46,000
I'm going to change into my local client directory and run a Artim SRF Doggett's.

13
00:00:47,250 --> 00:00:51,810
That's going to remove the entire git repository that's currently inside of our reactor at project.

14
00:00:53,370 --> 00:00:59,310
Then after that, I'm going to change back to my route project directory, which is still called JDBC,

15
00:00:59,910 --> 00:01:02,580
kind of an outdated name at this point in time, but whatever.

16
00:01:03,570 --> 00:01:05,010
Well, then do a get in it.

17
00:01:06,520 --> 00:01:12,610
Then back inside of my editor, I'm going to create another dot, get ignore file.

18
00:01:13,710 --> 00:01:18,330
Inside of your I don't want to commit anything that is inside of any bill directory, inside of any

19
00:01:18,330 --> 00:01:22,020
distribution directory or inside of any node module's directory.

20
00:01:26,760 --> 00:01:29,400
Then back over at our terminal, I'll do a quick get status.

21
00:01:30,640 --> 00:01:33,550
It looks reasonable enough, I'll do a get add.

22
00:01:35,860 --> 00:01:39,370
And a get commit of initial commit.

23
00:01:41,260 --> 00:01:42,370
OK, so that should be it.

24
00:01:43,220 --> 00:01:48,050
We've now got our repository now the very last thing we have to do is actually push these packages off

25
00:01:48,070 --> 00:01:48,780
to NPM.

26
00:01:49,120 --> 00:01:50,640
Let's take care of that in just a moment.

