<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
package main | |
import "fmt" | |
func main() { | |
fmt.Printf("hello, world\n") | |
} |
To remove a submodule you need to:
.gitmodules
file.git add .gitmodules
.git/config
.git rm --cached path_to_submodule
(no trailing slash).rm -rf .git/modules/path_to_submodule
(no trailing slash).git commit -m "Removed submodule <name>"
rm -rf path_to_submodule