这里选用gitee。
使用
首先安装git, 去官网下载安装包安装即可。
注册登录gitee, 在gitee上新建仓库。 仓库名尽量不要中文, 只是当云盘用存文件的话其他配置随意, 尽量简单。 基本上就是取个仓库名即可。
创建完后得到仓库地址。 配ssh的话会方便一些, 但不是必要, 有需要自行找教程。
在本地自选位置建立建一个文件夹, 作为存仓库的文件, 尽量不用中文名称。
进入仓库文件夹, 右键点击 git bush here, 打开终端。
将gitee上的仓库拉下来:
1
| git clone 仓库地址, http, ssh都可以
|
然后 cd 进入仓库文件夹。
把你的文件都复制到这个文件夹中。
接下来执行下面的代码:
1 2 3 4 5
| $ git config --global user.name "gitee账号的用户名,带着双引号" $ git config --global user.email "gitee账号的邮箱" $ git add . $ git commit -m "这里可以添加描述,没用敲个 . 即可" $ git push origin master
|
这样文件就上传到仓库中了。
这个文件夹保留, 以后有更新文件放在这里, 然后执行上面后三行代码即可。
gitee常用指令
1 2 3 4 5 6 7 8
| $ git clone https://gitee.com/用户个性地址/xxx.git $ git config --global user.name "Abosite" $ git config --global user.email "@qq.com" $ git add . $ git commit -m "." $ git push origin master
$ git remote add origin https://gitee.com/abosite/posts.git
|