Hi,
i’m relatively new to programming, and would like to implement a “version control” system. I’m not even sure these are the correct words.
Here are my requirements:
- I need to be able to regularly “save” current state of project files.
- I need to be able to revert to a previously saved state.
- I need to branch.
- The project files will be accessible from several computers, so it would be good, if changes made on files from computerA, would be accessible on computerB. There will be few computers to access, maybe 2 or 3.
- I need the files to be private: this is not for anyone to access
My development environment is Javascript, with Webstorm as IDE, on mac and windows Pcs.
What system to you suggest that meet my requirements ?