Dup Ver Goto 📝

Home

PT2/devtools/git does not exist
To
33 lines, 86 words, 814 chars Page 'Home' does not exist.

/devtools/github

include only certain files

Remote Repos

To add a remote

git remote add origin new.git.url/here

To change the remote repo (see this stackoverflow question):

git remote set-url origin new.git.url/here

you may need to

git push --set-upstream origin master

Diff With Remote Repo

git diff master origin/master

Submodules

See the git book

Force Pull

To pull and overwrite any existing files: (see here)

git fetch
git reset --hard HEAD
git merge origin/$CURRENT_BRANCH