Skip to content

Commit fa7962c

Browse files
committed
Blog Post 1 - Fixed Typos and links
1 parent 8badfc2 commit fa7962c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Blog 1 - Introduction.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ For BugTracker.NET we decided to simply do an import of the current development
2828

2929
For projects with a small team or, especially, those with a single team member this is the sort of thing you frequently see. People get lazy and don't keep up the discipline of working with code as if they were part of a larger team. Keeping disciplined is difficult but it will pay off in the end with a more stable code base which is more easily adopted by others. Chances are you're not going to work on the project until you die so it is a professional courtesy to maintain a code base which can be quickly adopted by others.
3030

31-
If your project would benefit from importing from subversion then there are some excelent tools in place to help. It can be as simple as
31+
If your project would benefit from importing from subversion then there are some excellent tools in place to help. It can be as simple as
3232

3333
git svn clone http://url.to.svn
3434

35-
The initial BugTracker.NET import into git and then into github was easy. The first step is to find a .gitignore file which is suitable for the project. This file lists which files to ignore when checking into git. Built binaires are generally not desirable artifacts to check into source control. The same is true for object files, the intermediaries between .cs and .exe. I personally use the example file from http://stackoverflow.com/questions/2143956/gitignore-for-visual-studio-projects-and-solutions although others swear by the github version https://github.com/github/gitignore/blob/master/VisualStudio.gitignore. Either of them is an excelent choice.
35+
The initial BugTracker.NET import into git and then into github was easy. The first step is to find a .gitignore file which is suitable for the project. This file lists which files to ignore when checking into git. Built binaires are generally not desirable artifacts to check into source control. The same is true for object files, the intermediaries between .cs and .exe. I personally use the example file [from stackoverflow]( http://stackoverflow.com/questions/2143956/gitignore-for-visual-studio-projects-and-solutions) although others swear by the [github version]( https://github.com/github/gitignore/blob/master/VisualStudio.gitignore). Either of them is an excellent choice.
3636

3737
Place this file into a new directory and then copy the old source control folders from subversion ignore any .svn directories.
3838

0 commit comments

Comments
 (0)