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

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 :: hardhat install 
Shell :: clear swap memory linux 
Shell :: praspberyr pi remote desktop xrdp install 
Shell :: ubuntu check if apache is running 
Shell :: remove all cache ubuntu 
Shell :: install qwebengineview pyqt5 
Shell :: install aws cli 2 yum 
Shell :: mac install gpg 
Shell :: kill port 3000 
Shell :: remmina ubuntu 
Shell :: ubuntu 20.04 bluetooth not turning on or working 
Shell :: heroku command not found 
Shell :: apt-get install ps 
Shell :: change remote origin 
Shell :: react native run ios on specific simulator 
Shell :: error: failed to push some refs github 
Shell :: how to unzip in gitbash 
Shell :: adb command to open deeplink 
Shell :: restart nginx 
Shell :: apt-get update 
Shell :: install jupyterlab with conda 
Shell :: update composer globally 
Shell :: install yarn in react native 
Shell :: remove orphan packages manjaro 
Shell :: linux start mongodb 
Shell :: git set name and email 
Shell :: how to change gopath 
Shell :: view git stash without applying 
Shell :: heroku select appp 
Shell :: install brave browser on linux 
ADD CONTENT
Topic
Content
Source link
Name
6+8 =