使用 Git GUI 删除文件
有没有办法使用 git gui 删除文件然后提交并推送?
Is there any way to remove a file using git gui then commit and push?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法使用 git gui 删除文件然后提交并推送?
Is there any way to remove a file using git gui then commit and push?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
不直接,因为
git gui
更多的是关于:类似 TortoiseGit 将允许以图形方式执行
git rm
。Not directly, since
git gui
is more about:An extension like TortoiseGit would allow a
git rm
to be performed graphically.您也可以删除该文件,然后将其暂存到 git gui 中。
You could also just delete the file and then stage that to be committed in
git gui
.步骤 1. 单击提交信息面板上的 Web IDE 选项,理想情况下,这会将您带到编辑器面板,并且左侧边栏选项卡中列出了存储库结构。
步骤 2. 单击要删除的目录并提交新更改,并根据需要与其他分支合并。
Step 1. Click on the Web IDE option on the commit information panel, this would ideally take you to the editor panel with the repo structure listed on the left blade.
Step 2. Click on the directory you wish to delete and commit the new changes and merge with the other branches if required.