Git 实用技巧1——从 Git 中停止追踪「被追踪的文件」 | 修改远程仓库地址

1. 从 Git 中停止追踪「被追踪的文件」

若误将 .idea, .vscode 中的本地配置文件添加到 git 中,会导致每次编译时,IDE 会提示 git 修改。为了减少/消除提示,需要将该文件取消追踪,但不能将其从本地删除,以取消对 workspace.xml 文件的追踪为例:

  1. 停止追踪文件

    bash 复制代码
    git rm --cached .idea/workspace.xml
  2. 更新 .gitignore 文件,添加 .idea/workspace.xml

  3. 提交更改

    bash 复制代码
    git add .
    git commit -m "Update .gitignore"

2. 修改远程仓库地址

修改远程仓库地址可能会影响团队协作,需要谨慎操作。

在实际开发工作中,可能会由于远程仓库迁移等原因导致我们需要修改远程仓库的地址,以下为具体步骤:

bash 复制代码
# 查看远程仓库地址
git remote -v
# 修改远程仓库地址
git remote set-url  <remote-name> <new-url>
# 验证远程仓库地址
git remote -v

相关推荐
Yeats_Liao12 小时前
Git 如何将旧仓库迁移新仓库中,但不显示旧的提交记录
git
五月仲夏15 小时前
git基础指令大全
大数据·git·elasticsearch
节省钱15 小时前
【Git】如何在 Git 提交后补充 Change-Id
服务器·git·gitee·gitlab·github·gitcode
想一个不重名的名字15 小时前
Git知识分享
git
dujunqiu1 天前
gitlab处理空文件夹的提交或空文件夹提交失败
git·gitlab·github
Hello Dam1 天前
Git 小白入门教程
git
Junmay661 天前
Git常用操作指令
git·github
这猪好帅2 天前
【Git版本控制器--3】Git的远程操作
git
smile_life_2 天前
git和idea重新安装后提交异常
java·git·intellij-idea