赞
踩
- git stash
- git pull
- git stash pop
- git status
- git add
- git commit
- git push
git stash
: 将当前工作目录中未完成的修改(包括已追踪和未追踪的文件)保存到一个临时区域,使你可以切换到其他分支或提交变更,而不会丢失这些修改。
git pull
: 从远程仓库获取最新的提交,并将其合并到当前分支。
git stash pop
: 将之前使用git stash
命令保存的临时修改重新应用到当前工作目录中。这一步通常在你完成了git pull
之后,为了恢复之前保存的修改。
git status
: 显示当前工作目录中的文件状态,包括已修改、已暂存和未跟踪的文件。
git add
: 将指定的文件添加到Git的暂存区,准备提交。
git commit
: 将暂存区中的文件提交为一个新的提交(commit),并添加提交消息。
git push
: 将本地的提交推送到远程仓库,实现代码的分享和同步。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。