GIT常用操作 git add . 添加当前目录下的文件到GIT git commit -m ‘描述’ 添加提交的描述 git pull 拉取GIT上的代码 git push 提交自己编写的代码 git log 查看git日志 git stash 暂存当前正在进行的工作。 git pull origin master 拉取服务器的代码 git stash pop 合并暂存的代码