Implementing Version Control with Microsoft Azure Repos and Pushing Code to Remote Repository

preview_player
Показать описание
In this video, I will show you how to implement Version Control for ASP.NET Core 3.0 and Angular 10 Application using Microsoft Azure DevOps Repos.
----Video Number : 6

----BLOG

---GIT COMMANDS
git init
git add YourFolderName/*
git commit -m "Your Message"
git git remote add origin Remote-Repo-Link
git push -u origin --all

----LINKS
Microsoft Azure Repos

***SOURCE CODE DEV OPS REPO***
***SOURCE CODE GITHUB LINK***
Рекомендации по теме
Комментарии
Автор

simply amazing tutorials bro much respect to you from Sweden

rinnionnTV
Автор

When I added the new ClientApp as you did, it created a .git repro. Therefore when I worked through this video to setup the git repro for the solution, it did not include the files within the ClientApp directory due to the ClientApp having its own .git folder. I had to remove the .git folder from the ClientApp, then remove the .git folder from the solution folder, reinit git and do the git add . command. I'm really curious why this same issue didn't happen to you.

menk