Remote (Git)
Tuesday, 28 January 2014, 22:59
A remote is a URL to a repository from which you can pull changes and to which you can push changes.
Git Push Default
Tuesday, 28 January 2014, 21:58
The default push strategy is going to change in Git 2.0. When no default push strategy is configured a warning will be shown when pushing.
Cache Credentials in Git
Tuesday, 28 January 2014, 21:27
When you are working with Git you often have to provide you credentials when you want to push your changes to a remote repository. It is possible to cache these credentials for a certain amount of time.
User Configuration in Git
Tuesday, 28 January 2014, 21:11
When changes are committed to a version control system it is always useful to be able to track who committed the changes. In Git you can configure your username and email address for this purpose. This information will be recorded in subsequent commits.
Remove Git Configuration
Tuesday, 28 January 2014, 20:55
Removing a Git configuration can be done with the git config --unset command.
Git Configuration
Tuesday, 28 January 2014, 20:54
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.
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.
Git
Monday, 27 January 2014, 21:47
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.