Currently we do not have option to delete a file/folder from git repository. This would be equivalent to "git rm <file>" command.
Under which menu item was the git rm <file>
command added?
I cannot find this change in ADStudio 14 Dev 9.
The Delete menu item, when right clicking on a file from under a Git repo, seems to work only like the Bash rm <file>
command.
There is no menu item specific to git rm <file>
. This is accomplished via the commit dialog where you "stage" a deleted file (from working tree) to index. The same applies to git add <file>
, which is accomplished using the commit dialog where you "stage" a modified file to index.
There is no menu item specific to git rm <file>
. This is accomplished via the commit dialog where you "stage" a deleted file (from working tree) to index. The same applies to git add <file>
, which is accomplished using the commit dialog where you "stage" a modified file to index.
Yes, thank you; I couldn't yet access the new Commit dialog because of issue #8328. Will close this issue once #8328 is fixed and will be able to test the git rm <file>
cmd.
Yes, thank you; I couldn't yet access the new Commit dialog because of issue #8328. Will close this issue once #8328 is fixed and will be able to test the git rm <file>
cmd.
Verified using ADStudio 14 Dev 11, menu item actions Unstage and Stage were added in the Commit dialog to move files between the Stage area and the Working directory area. The Unstage action is mostly similar to the git rm --cached <file>
cmd, and the Stage action is similar to the git add <file>
cmd.
Closed.
Verified using ADStudio 14 Dev 11, menu item actions Unstage and Stage were added in the Commit dialog to move files between the Stage area and the Working directory area. The Unstage action is mostly similar to the git rm --cached <file>
cmd, and the Stage action is similar to the git add <file>
cmd.
Closed.
Issue #8140 |
Closed |
Fixed |
Resolved |
Completion |
No due date |
No fixed build |
No time estimate |
1 issue link |
is blocked by #8328
Issue #8328Commit dialog not showing up |
Under which menu item was the
git rm <file>
command added?I cannot find this change in ADStudio 14 Dev 9.
The Delete menu item, when right clicking on a file from under a Git repo, seems to work only like the Bash
rm <file>
command.