摘要: 1.删除并且屏蔽文件 git rm --cached *.xcuserstate git commit -m "Removed file that shouldn't be tracked"2.删除远程分支 oschina:git push oschina :your_branch_name github:git push origin :your_branch_name3.删除本地分支 git branch -d your_branch_name4.查看分支 git branch -a 阅读全文
posted @ 2013-11-21 10:20 hellocby 阅读(226) 评论(0) 推荐(0) 编辑