Removing files using Git GUI
Is there any way to remove a file using git开发者_JAVA百科 gui then commit and push?
Not directly, since git gui
is more about:
allowing users to make changes to their repository by making new commits, amending existing ones, creating branches, performing local merges, and fetching/pushing to remote repositories
An extension like TortoiseGit would allow a git rm
to be performed graphically.
You could also just delete the file and then stage that to be committed in git gui
.
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.
精彩评论