Prerequisites:
Full process does not use paid tools, does not require to hold a membership, etc. Pure for free.
Story background:
Like some friends, the editor’s working environment includes , PC and , a notebook . Because some scenarios are more efficient with PCs, and some scenarios are more convenient with laptops, especially when traveling is required.
But two different devices sometimes cause a more troublesome problem , that is, file synchronization . Including but not limited to commonly used word, excel, ppt, pdf, xmind, and Markdown documents.
Solution:
For the office part (word, excel, pp), the editor has tried two solutions
- WPS cloud space, non-member users, 1G cloud space can be used for free. (For 90% of people, commonly used documents will not be greater than 1G)
- Tencent Cloud documents, non-member users, with 1G cloud space available for free.
But for some other documents, the above platforms are not highly compatible. The editor’s solution is to build an gith environment to synchronize other data. There is a little threshold for this method, which means you need to understand a little bit of how to use git. But the basic command is very simple.
Platform selection:
There are the following domestic free git cloud private warehouses.
For the reason that "can remember one less account" , he decisively chose WeChat Git.
Deployment steps:
1. Cloud platform configuration - Register an account:
Register a good account on WeChat Git HTTPS://git.weixin.qq.com/
2. Cloud platform configuration - Create project:
3. Local configuration - Install Githml3
4. Local configuration - Log in githml3
5. Start using - Git pull project
Use git clone xxx (You can see the HTTPS link in the project you created on the platform website)
6. Start using - add files, push, pull
When you need to add a file and include it in the management scope, use git add file name, and use git commit -m "Explanation of what is added this time."
When you need to synchronize the latest modifications of your to the cloud platform , use git push.
When you need to pull the current latest document from the cloud platform , then use git pull
If you have any questions, please ask questions in the comment area.