Files
cheatsheets/git.md
Rico Sta. Cruz 1288ba807c Update.
2013-01-08 16:37:25 +08:00

297 B

title: Git

Submodules

# Import .gitmodules
  git submodule init

# Clone missing submodules, and checkout commits
  git submodule update --init --recursive

# Update remote URLs in .gitmodules
# (Use when you changed remotes in submodules)
  git submodule sync