Github上文件传输/修改/删除的新手教程

本地创建一个空的仓库git init
克隆远程项目到本地git clone https://github.com/xiaoshubin/SmallUtils.git [文件夹名称]
查看远端地址 git remote –v
查看配置 git config --list
暂存所有的更改git add .
丢弃所有的更改git checkout
查看文件状态git status
本次要提交的概要信息提交git commit -m
设置远端仓库地址 git remote add gitlb 你的远端地址
查看差异git diff HEAD commit hash
查看命令帮助 git help --web log
如何创建SSHssh-keygen -t rsa -C "your_email@example.com" 参考 创建一个 SSH key详细过程
1、先拉下来,会自动合并的(不用操心)
git pull origin master
2、再上传
git push -u origin master
Github上文件传输/修改/删除的新手教程(2017年04月30日):
https://blog.csdn.net/jobs_anfield/article/details/70998786
介绍Android Studio中Git 的使用(2017年10月13日):
https://blog.csdn.net/chenguang79/article/details/78225475
全面的GIT教程
http://www.runoob.com/git/git-tutorial.html
廖雪峰的Git教程
https://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000
AndroidStudio通过Git上传到Github
https://www.cnblogs.com/imqsl/p/6763133.html
Git教学视频bilili
https://www.bilibili.com/video/av53248413?from=search&seid=8474798547743645980
Git桌面工具
https://www.sourcetreeapp.com
Git官方文档
https://git-scm.com/book/zh/v2
github私有库权限怎么设置?
http://www.imooc.com/wenda/detail/453157
怎样简单的clone自己github的私人项目
https://blog.csdn.net/kalenE992/article/details/92029294
merge和rebase的区别 异常一:
fatal: remote origin already exists.解决方法
https://www.jianshu.com/p/3380ec281729
异常二:
Git - remote: Repository not found
https://blog.csdn.net/ken_ding/article/details/81909504
【Github上文件传输/修改/删除的新手教程】几种拉取方式的不同:
Merge Rebase Branch Default

    推荐阅读