Bootstrap

git命令总结

合并部分文件到目前分支

git checkout '分支名' '路径'

新分支推送

git push --set-upstream origin '分支名'

查看指定commitid 指定文件夹 提交的文件目录

git show 09a42fbd66a4c12d8d94130600d8e72e7843714b --stat '路径'

删除分支

git branch -D '分支'
git  remote prune origin
;