1
0
mirror of https://github.com/namibia/tips.git synced 2024-06-25 22:52:34 +00:00

Merge pull request #26 from samebchase/patch-2

Fix shell command and spelling
This commit is contained in:
hemanth.hm 2015-08-14 11:35:03 +05:30
commit ba2f4eac6e

View File

@ -204,7 +204,7 @@ git log --no-merges --stat --reverse master..
## Pick commits across branches using cherry-pick
```sh
git checkout <branch-name> && cherry-pick <commit-ish>
git checkout <branch-name> && git cherry-pick <commit-ish>
```
## Find out branches containing commit-hash
@ -324,7 +324,7 @@ __Alternatives:__
git clean -df
```
## Update all the submoudles
## Update all the submodules
```sh
git submodule foreach git pull
```