Merge pull request #95 from infertux/git-submodule-update

Add alternative to update submodules
This commit is contained in:
hemanth.hm 2016-06-19 19:03:08 +05:30 committed by GitHub
commit 93e25eb718
2 changed files with 7 additions and 2 deletions

View File

@ -481,6 +481,11 @@ __Alternatives:__
git submodule update --init --recursive
```
```sh
git submodule update --remote
```
## Show all commits in the current branch yet to be merged to master
```sh
git cherry -v master

View File

@ -173,7 +173,7 @@
}, {
"title": "Update all the submodules",
"tip": "git submodule foreach git pull",
"alternatives": ["git submodule update --init --recursive"]
"alternatives": ["git submodule update --init --recursive", "git submodule update --remote"]
}, {
"title": "Show all commits in the current branch yet to be merged to master",
"tip": "git cherry -v master",
@ -361,4 +361,4 @@
}, {
"title": "Clone a shallow copy of a repository",
"tip": "git clone https://github.com/user/repo.git --depth 1"
}]
}]