Skip to content

Git help

illyfrancis edited this page Mar 12, 2014 · 3 revisions
git add <...>
git add -A  (equiv to add . & add -u)
  git add -u <...>  (for tracked changes)
  git add . (for untracked, i.e. new)
git commit -m "comment"
git push https://github.com/illyfrancis/scribble.git master
git checkout .  (to ignore local changes)

Clone this wiki locally