Files
cheatsheets/git.md
Rico Sta. Cruz 70ea6d8bed .
2014-02-25 18:32:14 +08:00

359 B

title, layout
title layout
Git default

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

Cherry pick

git rebase 76acada^