@@ -17,6 +17,7 @@ <h2>Getting and Creating Projects</h2>
1717 public Git repository, as you would do if you wanted a copy or wanted to
1818 work with someone on a project. We will cover both of these here.
1919 </ p >
20+
2021 </ div >
2122</ div >
2223
3132 </ h2 >
3233
3334 < div class ="block ">
34- To create a repository from an existing directory of files, you can
35+ < p > To create a repository from an existing directory of files, you can
3536 simply run < code > git init</ code > in that directory. For example,
3637 let's say we have a directory with a few files in it, like this:
38+ </ p >
3739
3840< pre >
3941< b > $ cd konichiwa</ b >
4042< b > $ ls</ b >
4143README hello.rb
4244</ pre >
4345
44- This is a project where we are writing examples of the "Hello World"
46+ < p > This is a project where we are writing examples of the "Hello World"
4547 program in every language. So far, we just have Ruby, but hey, it's
4648 a start. To start version controlling this with Git, we can simply
4749 run < code > git init</ code > .
50+ </ p >
4851
4952< pre >
5053< b > $ git init</ b >
5154Initialized empty Git repository in /opt/konichiwa/.git/
5255</ pre >
5356
54- Now you can see that there is a < code > .git</ code > subdirectory in your
57+ < p > Now you can see that there is a < code > .git</ code > subdirectory in your
5558 project. This is your Git repository where all the data of your
5659 project snapshots are stored.
60+ </ p >
5761
5862< pre >
5963< b > $ ls -a</ b >
6064. .. .git README hello.rb
6165</ pre >
6266
63- Congratulations, you now have a skeleton Git repository and can start
67+ < p > Congratulations, you now have a skeleton Git repository and can start
6468 snapshotting your project.
69+ </ p >
6570
6671 < p class ="nutshell ">
6772 < strong > In a nutshell</ strong > , you use < code > git init</ code > to make an
0 commit comments