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 :: install mongodb on m1 
Shell :: styled components props typescript 
Shell :: pip fork install 
Shell :: save firewall config linux 
Shell :: git cli switch user 
Shell :: generate ed25519 key pair 
Shell :: ubuntu show memory usage 
Shell :: how to completely remove apps ubuntu package 
Shell :: install chrome beta on linux mint 
Shell :: apache config directory 
Shell :: evillimiter: command not found 
Shell :: sublime text download ubuntu 
Shell :: installing git on ec2 
Shell :: stop localhost server 
Shell :: git autocomplete branch name mac 
Shell :: linux get host ip local 
Shell :: disable vscode server 
Shell :: service account credentials gcp token 
Shell :: install pylatex 
Shell :: notebook 
Shell :: ufw block ip linux 
Shell :: Fatal error in launcher: 
Shell :: powerline fonts install 
Shell :: nodemon command not found 
Shell :: git find files with conflicts, list files with conflict 
Shell :: how to completely remove blender from ubuntu 
Shell :: linux apt pcap 
Shell :: use alternative composer version cpanel ssh 
Shell :: how to collect GREPCC coin in grepper 
Shell :: bash if file contains string 
ADD CONTENT
Topic
Content
Source link
Name
2+5 =