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 :: uninstall node from linux debian 
Shell :: restart mysql mac command line 
Shell :: ip address ubuntu 
Shell :: install compass mongodb ubuntu 
Shell :: install npm ubuntu 
Shell :: nginx E: Sub-process /usr/bin/dpkg returned an error code (1) 
Shell :: remove the last commit git without losing changes 
Shell :: ionic cli 
Shell :: ubuntu install codecs 
Shell :: ubuntu dconf editor install 
Shell :: ssh delete folder 
Shell :: get the last exit code cmd 
Shell :: alacritty ubuntu install 
Shell :: install lerna on Linux 
Shell :: terraform apply auto approve 
Shell :: ubuntu stop process on port 
Shell :: node-pre-gyp install --fallback-to-build --library=static_library 
Shell :: delete namespace stuck in terminating 
Shell :: ubuntu certbot nginx 
Shell :: brew see list of installed packages 
Shell :: grep return n characters before or after match 
Shell :: remove notepad plus plus ubuntu 
Shell :: how to reverse an array in bash scripting? 
Shell :: apache2 does not start xampp mac 
Shell :: install keras anaconda jupyter notebook 
Shell :: how to stop port 3000 in windows 
Shell :: how to check in which brach we are in git 
Shell :: embed a youtube video in github readme 
Shell :: linux install node 
Shell :: stop port ubintu 
ADD CONTENT
Topic
Content
Source link
Name
6+7 =