githb存储
Repositories 下 new 新建存储库(test),可选Private私有;
执行命令上传
git init
git add . #.全部文件,也可填文件名
git commit -m "first commit"
git branch -M master
git remote add origin https://github.com/yanzhiqing/test.git
git push -u origin master
有时上传不上去需要先拉取一下
git pull origin master
要给仓库添加文件得先拉取,然后在添加推送。
删除仓库某个文件
git pull origin master # 将远程仓库里面的项目拉下来
dir # 查看有哪些文件夹
git rm -r --cached .idea # 删除.idea文件夹
git commit -m '删除.idea' # 提交,添加操作说明
git push -u origin master # 将本次更改更新到github项目上去
下载仓库某个文件
可以通过SVN下载
1.首先下载SVN
2.找到要下载的文件地址,例如:“https://github.com/yanzhiqing/DEMO/tree/master/imgs”
3.将tree/master替换为trunk,生成SVN下载地址:“https://github.com/yanzhiqing/DEMO/trunk/imgs”
4.桌面右键,选择SVN checkout,输入地址,选择下载位置,点击ok下载。
下载git并配置
$ git config --global user.name "user.name"
$ git config --global user.email "user.email"