git + 码云 =没有界面版的百度云盘
git安装客户端:
https://git-scm.com/downloads
码云注册地址:
https://gitee.com/
注册完成之后 创建一个自己的仓库,名字是python_study;
https:
https://gitee.com/wyw0501/python_study.git
ssh地址:
git@gitee.com:wyw0501/python_study.git
简易的命令行入门教程:
Git 全局设置:
git config --global user.name "wyw0501"
git config --global user.email "wyw0501@126.com"
创建 git 仓库:
mkdir python_study
cd python_study
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://gitee.com/wyw0501/python_study.git
git push -u origin master
已有仓库?
cd existing_git_repo
git remote add origin https://gitee.com/wyw0501/python_study.git
git push -u origin master
码云注意事项
博客园注册:
https://www.cnblogs.com/
wyw…
您的博客是:https://www.cnblogs.com/wyw0501/