Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

update submodule github

git pull --recurse-submodules
git submodule update --remote --recursive
Comment

git submodule update

#https://chrisjean.com/git-submodules-adding-using-removing-and-updating/

#it checks out the specific version of the project and respective submodule recursively (if applicable)
#but not within a branch.
git submodule update --init --recursive

#or
git submodule init && git submodule update --recursive
Comment

update submodule git

git submodule init
git submodule update
Comment

submodule update

git submodule update --remote
Comment

update submodule

$ git submodule update --init --recursive
Comment

update submodule

submodule@example:~$ git clone --recurse-submodules https://gitlab.com/cameronmcnz/surface.git
submodule@example:~$ cd sur*
submodule@example:~$ git submodule update --remote
submodule@example:~$ git add .
submodule@example:~$ git commit -m "git submodule updated"
submodule@example:~$ git push origin
Comment

PREVIOUS NEXT
Code Example
Shell :: Is the docker daemon running? 
Shell :: ssh copy folder 
Shell :: install mongo ubuntu 20.04 
Shell :: how to uninstall npm package 
Shell :: look like hacker linux 
Shell :: using yarn in docker 
Shell :: how to install tesseract in other language in linux 
Shell :: bash parameter 
Shell :: sh increment variable 
Shell :: install ssl certificate ubuntu nginx 
Shell :: bash get environment variable 
Shell :: git push remote 
Shell :: undo reset HEAD^ 
Shell :: bash case statement 
Shell :: bash script to clean up log files 
Shell :: brave installation ubuntu 
Shell :: hostname change inux 
Shell :: ssh key github 
Shell :: push particular commit in git 
Shell :: boot maker for ubuntu 
Shell :: post webhook bash 
Shell :: install microsoft edge terminal 
Shell :: linux terminal color change 
Shell :: change display resolution on terminal 
Shell :: Cannot install windows-build-tools 
Shell :: how to ignore files in git 
Shell :: reset resolv.conf 
Shell :: install windows without usb or dvd 
Shell :: bash script object array 
Shell :: linux hex to dec 
ADD CONTENT
Topic
Content
Source link
Name
6+9 =