+ [2019-06-17T18:05:42Z] justthedoctor Hello, 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] dmlloyd git fetch origin
+ [2019-06-17T18:41:56Z] dmlloyd that gets the changes
+ [2019-06-17T18:42:42Z] dmlloyd then 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_ninja Is there any way to start an issue tracker for my fork.

message no. 173516

Posted by justthedoctor in #github at 2019-06-17T18:05:42Z

Hello, 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-18T06:44:04Z] physkets When someone merges a PullRequest,
+ [2019-06-18T06:44:31Z] physkets does the commit into master retain any information about the original author of the commit?
+ [2019-06-18T08:03:28Z] physkets oops got disconnected
+ [2019-06-18T10:37:02Z] deepy physkets: yes, the original commit is still there with the original author