+[2019-06-17T18:05:42Z]justthedoctorHello, I'm not very new to github, just the linux end of things, i have a repo on my linux that i cloned with git clone https://github.com/path now, i want to update that and only pull down the new edits i just synced, normally i would delete and rsync but this time i cant, how would i git .... theurl and update files to the repo's change's? +[2019-06-17T18:41:53Z]dmlloydgit fetch origin +[2019-06-17T18:41:56Z]dmlloydthat gets the changes +[2019-06-17T18:42:42Z]dmlloydthen you can either do: `git reset --hard origin/master` which will delete your local changes and replace them with upstream, `git rebase origin/master` which will rebase your changes on upstream, or otherwise merge them +[2019-06-17T23:03:11Z]magic_ninjaIs there any way to start an issue tracker for my fork.
+[2019-06-18T06:43:48Z]physketsHi! +[2019-06-18T06:44:04Z]physketsWhen someone merges a PullRequest, +[2019-06-18T06:44:31Z]physketsdoes the commit into master retain any information about the original author of the commit? +[2019-06-18T08:03:28Z]physketsoops got disconnected +[2019-06-18T10:37:02Z]deepyphyskets: yes, the original commit is still there with the original author