github的代码下载流程
linux端
==
1. 要有git环境
2. 获取代码的git提交网页连接
点击圈出位置,复制代码链接
3. 在命令行上执行: git clone 复制的链接==
windows端
==
1. 安装一下软件,在腾讯电脑管家可以下载
3. 在你想下载的文件夹目录下 右键
点击Git Bash Here,出现后台命令行后执行
git clone 复制代码链接
git提交代码
1. git add file
2. git commit -m "xxx"
3. git push origin HEAD:refs/for/branch_name
git暂存代码
==在开发过程中,写好的代码还不能提交。你又需要使用base代码去处理一个问题。就需要stash暂存
1. git stash save “代码描述”
2. git stash apply 前标
3. git stash clear 清理所有暂存