Skip to content
Michael Lockhart edited this page Feb 26, 2017 · 1 revision

In the README I mention some remotes, tracked in remotes.txt, that contain some background for my own exploration. I also mention adding the remotes after cloning dotfiles for the first time... bit here's another gotcha:

The git: protocol is READ-ONLY

So that means the initial clone from github, performed by dotfiles is a READ-ONLY copy. You won't be able to make local changes and push them back.

To remedy:

git remote rm origin
git remote add origin git@github.com:sinewalker/dotfiles.git
git branch --set-upstream-to=origin/master master
# add changes
# optionally git pull ad merge
git push origin master
Clone this wiki locally