Tag Archives: global::
git-logo-small

Git Tip: git config user.name and user.email for local (not global) config

Git is a source-control tool used by software developers.
As I’ve mentioned I’m just learning the ropes of Git and as someone doing that I’m going through a lot of tutorials that have a lot of similar-looking tips. One in particular is the use of:

git config –global user.name “Your Name”
git config –global user.email “you@example.com”

These are also [...]

Read full storyComments { 0 }
Using Namespaces in C#

Using Namespaces in C#

As we’ve seen briefly in a previous example, namespaces in C# can give a project some useful ways to organize code. The most common example of where namespaces are useful is what I’ve dubbed the “System” example. A quick google on C# namespace will land you a ton of results showing a basic [...]

Read full storyComments { 0 }