Git status add commit push pull
2019-10-09 本文已影响0人
Greyish
Git 上传到远程分支
git status //可查看文件状态
git add . //将所有文件导入到缓存区
git commit -m "..."
git push
Git 从远程分支下载文件
git stash
git pull
git stash pop
Git 上传到远程分支
git status //可查看文件状态
git add . //将所有文件导入到缓存区
git commit -m "..."
git push
Git 从远程分支下载文件
git stash
git pull
git stash pop