For windows, itβs hard to rule out the simplicity of SVN through Tortoise SVN . However, I prefer git power, speed, model and flexibility. git runs in windows and will be worth what it takes to find out.
Understanding the brilliance for git will bring you huge dividends as a software engineer.
15 seconds git tutorial Edit: 17 seconds have passed.
Git:
cd c:\dev\project git init git add . git commit -m "Initial Commit"
Edit Editing:
git add file1.txt git add file2.txt git commit -m "Fixed up thingy."
View status:
git status
Look at the story:
git log
source share