HelloWindowsPhone
HelloWindowsPhone

Reputation: 700

Any fast way to back up all projects in Visual Studio?

I have about 25 projects in Visual Studio 2015 /Projects folder. When I go to work I made change to some of its on a company PC. Then when go home I must delete /bin and /obj folders (using a self created tool) and make a 7z file (It take about 15 min with ultra mode 7-zip, file size about 300MB), upload to OneDrive and download and open in my home PC. It continue repeated like that. I did use GIT but I not always remember to sync every projects.

My question is have another way to do this faster? Can I using git for whole /Projects folder and how to do that?

Upvotes: 0

Views: 40

Answers (2)

Marina Liu
Marina Liu

Reputation: 38106

Git is an efficient way to do that. You should be used to it after a period of usage.

If the 25 projects are related, you can manage them in one git repository. Otherwise you should manage them in different repositories.

More detail about git, you can refer git book.

Upvotes: 1

Syed Faizan
Syed Faizan

Reputation: 961

Use git, its much safer when it comes to code rollback.

i found this tool which can help you to auto update your git repos

git-repo-updater

Upvotes: 0

Related Questions