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

git update submodule to latest

cd projB/projA

git pull origin master
Comment

update git repository and submodules

git pull
git submodule update --remote --merge
Comment

PREVIOUS NEXT
Code Example
Shell ::  
Shell ::  
Shell ::  
Shell ::  
Shell ::  
:: git remote origin 
Shell ::  
:: docker update all images 
Shell ::  
::  
Shell ::  
:: install wireshark ubuntu 
::  
::  
::  
Shell :: grep show lines above and below 
::  
Shell :: how to remove user from the group 
Shell ::  
::  
::  
Shell ::  
::  
Shell :: cd into differernt drive 
::  
:: git fetch not pulling branches 
:: command to check pip3 version on linux 
::  
Shell ::  
Shell ::  
ADD CONTENT
Topic
Content
Source link
Name
5+8 =