Remote Refinements #319
Loading…
Reference in New Issue
No description provided.
Delete Branch "remote-refinements"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Looks good other than throwing away the errors in rename.
You're right, this signature looks better.
An error indicates an error in the function, but failure to rename some refspecs because they do not follow the standard pattern is not an error condition. The error array is returned when
ret == 0
. As the documentation for this function says, the ownership of the strings passes to the caller, so you need to free the string array.The second line of the function frees the string array.
Thanks.