赞
踩
一.GIT:
1.从其他仓库拉下来的代码想推送到自己的本地仓库中:
git config --global user.name "账号"
git config --global user.email "邮箱"
//移除原来仓库的连接
git remote rm origin
//连接本地仓库
git remote add origin 仓库地址
//去掉克隆的提交,去掉原来仓库的完全链接
git filter-branch -- --all
git push -u origin --all
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。