Learning Git with Visual Studio #3
In this post we’re going to talk about History. In the previous post we saw how to commit changes so that git can track them, but without an history browser this list of changes wouldn’t be available...
View ArticleLearning Git with Visual Studio #4
When you’re in a team and start working on a new implementation or when you just want to do some experiments with your code without worrying about introducing regression with actual code, the best...
View ArticleLearning Git with Visual Studio #5
In previous article I showed how to take changes from a branch into parent branch, visually we could imagine this operation like “copying” some files from a directory into his parent, but what if,...
View ArticleLearning Git with Visual Studio #6
In previous post we talked a lot about branches and all the stuff involved (merge, rebasing, cherry-pick) but we didn’t covered a quite simple scenario: You’re working on a branch, and while in the...
View ArticleLearning Git with Visual Studio #7
Until now, we worked with a local installation of git and everything was good but once we start working on a project together with someone else we’ll soon discover that we need a way to share our work...
View ArticleLearning Git with Visual Studio #8
It’s inevitable, you or someone in your team make some changes and code doesn’t work as it should anymore and so is important to understand what has changed, when it has changed and maybe even who and...
View ArticleInstall Windows 10 April update on Alienware machine
My main development machine is an Alienware 15 R3, a very powerful and nicely colored machine and, as many of you I wanted to install the latest release of Windows 10, the April 2018 update a.k.a build...
View ArticleDetect Application closing in UWP
Nearly every application when user closes it using the “X” button on upper right corner prompts something like this Asking user if he wants to save actual work or cancel closing operation. Doing this...
View ArticleUWP Localization inside a library
Many of my blog posts comes from personal real world needs, since many of them requires more than just an internet search, when i struggle with some of them I try to share my experience with the online...
View ArticleUsing Git SubModules with Visual Studio
Disclaimer: I’m not a Git guru, so information in this post might not be the most accurate, it just works on my machine and wanted to share my experience. I take for granted that you are a Visual...
View Article