常用的git 命令

// 删除本地分支
git branch -D master
//查看远程仓库
git remote -v
//查看本地分支
git branch
查看远程仓库信息
git remote show <仓库名>
关联本地项目和远程仓库分支
git branch --set-upstream-to=<仓库名>/<分支名>
//查看分支关联情况
git branch -vv
//取消关联
git remote remove origin
// 关联远程
git remote add origin https://xxxxxxx/wangdong/helloworld.git
// 清除项目上的git
rm -rf .git

你可能感兴趣的:(常用的git 命令)