关于仓库转移 重新拉取git代码

1、进入项目终端或者idea的Terminal查看代码已绑定的git仓库地址

git remote -v


2、删除本地关联的git仓库地址

git remote rm origin


3、本地代码关联新的仓库地址

git remote add origin 新地址


4、再次查看本地代码关联的git仓库地址是否正确

git remote -v


5、确认无误后即可再次提交和推送代码到代码仓库啦

git pull 报错:There is no tracking information for the current branch.

git pull 报错:There is no tracking information for the current branch.-CSDN博客

你可能感兴趣的:(git)