Root Cause:It seems that the files which you want to ignore are already committed in repository. And .gitignore doesn't actually ignore the files which are already committed into the…
Normally, you get this message when you are doing GIT operations from two different places. Like I got this issue while using Git Bash (Command Line) & Visual Studio both to perform Git…
If you are a beginner to Git then you have come to the right place.After watching the below video, you will be able to migrate your new/existing .NET application to GitHub from Visual Studi in a few…
ProblemDeleted remote branches are still visible in Visual Studio Team Explorer (Branches Section).SolutionYou just need to run git fetch --prune command in your solution directory using GIT Bash or…
If you want to rename the current branch, hit below command:git branch -m <newname>If the branch you want to rename is different from the current branch, then hit below commandgit branch -m…
As I am new to Git & in learning phase of it's concepts. During my learning, I found below commands quite useful. So, I thought to document my learning by writing a blog here.Useful GIT Commandsgit…