Remove Git Configuration

Tuesday, 28 January 2014, 20:55

Tags: Git VCS

Removing a Git configuration can be done with the git config --unset command.

Read more


Git Configuration

Tuesday, 28 January 2014, 20:54

Tags: Git VCS

In Git you can configure settings such as your username or email address on three different levels. In this post the the three levels of coniguration will be explained.

Read more


Git 1.8.5.2 - could not read Username for 'https://github.com'

Monday, 27 January 2014, 23:16

Tags: Git

When trying to push changes to a remote GitHub repository with Git 1.8.5.2 the following error occurred: fatal: could not read Username for 'https://github.com': No such file or directory.

Read more


Add Git to Development Environment

Monday, 27 January 2014, 22:57

Tags: Development Environment Setup Git VCS

Adding support for a version control system to the Development Environment is crucial. It is very important for project collaboration and it is also very convenient to have a full history of all the work you have been doing. In this post I will describe how I add Git to the development environment described in the development environment setup post.

Read more


Git

Monday, 27 January 2014, 21:47

Tags: Git VCS

Git is a distributed version control system. Version control systems give you the ability to keep track of the entire history of all the files you place under version control. In distributed version control systems everyone who is working on the files under version control has a local copy of the history.

Read more