1. 添加自己的文件 git add .;
2. 缓存自己的文件 git stash;
3. 查看状态 git status;
4. 获取别的分支 git pull origin master(分支名);
5. 出栈自己的文件 git stash pop 。