RSSAmplifier

how.wtf · Nov 13, 2023

Reverting changes to Git submodules

0
Sign in to vote or save

This site does not allow itself to be embedded. You can still read it on the original site — the toolbar below keeps your place in the directory.

Reverting a submodule in Git is simple. How to revert changes to a Git submodule The cleanest / easiest method of reverting changes to one or many git submodules is by using the following two commands: 1git submodule deinit -f . 2git submodule update --initThe git submodule deinit -f . command “deinitializes” all submodules in the repository. The git submodule update --init command…

Read on how.wtf

Comments

Nothing yet. Say the first thing.

    Sign in to join the conversation.