+[2016-02-29T23:28:42Z]sagerdeariaWhen I fork a github repo, and clone locally on my computer, if the initial github repo is updated, how can I `git pull` from my local clone of my forked repo? +[2016-02-29T23:34:57Z]gitinfo[!pull_upstream] To incorporate changes from an "upstream" or forked-from repository: git remote add upstream $URL; git fetch upstream; git merge upstream/$BRANCH. https://help.github.com/articles/syncing-a-fork/ +[2016-02-29T23:34:57Z]VxJasonxV!sync +[2016-02-29T23:36:43Z]duckieHi guys +[2016-02-29T23:45:23Z]duckiehi guys
VxJasonxV - Good answer, but I still need the files to be publicly accessible. :/
+[2016-03-01T01:43:19Z]jberkuswhat do I need to enable to get notifications every time someone opens a PR or updates a PR against a certain project? +[2016-03-01T03:46:51Z]tp43_Hi, I was wondering if it was necessary to add my ssh key to my ssh-agent. I'm not sure what that is, and maybe my system automatically does it +[2016-03-01T03:52:38Z]tp43_looks like you do no have to spawn ssh-agent. I just did it and it didn't find any keys or add any +[2016-03-01T03:53:28Z]tp43_I mean it worked without spawning ssh-agent. I just did ssh-add and it worked +[2016-03-01T04:06:43Z]tp43_I think I Have my ssh keys stuff setup correctly now I would like to try and do a git init, git stage, git commit, git merge a hello world. Basically All I a looking for is to upload my web design to my account for safe storage, no tracking and stuff