{"pageProps":{"tip":{"slug":"how-to-get-changes-from-forked-project","title":"How to Get Changes from Forked Project","description":"Learn how to get changes committed to a project you forked.","content":"\n## 1. Clone your forked project\n\nThis is only important if it's not yet in your workspace\n\n```bash\ngit clone git@github.com:YOUR-USERNAME/YOUR-FORKED-PROJECT.git\n```\n\n## 2. Add remote from original repository in your forked one\n\n```bash\ncd into/cloned/forked-project\ngit remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/PROJECT-YOU-FORKED-FROM.git\ngit fetch upstream\n```\n\n## 3. Updating your forked project from the original one to have their changes\n\n```bash\ngit pull upstream master\n```\n\n## 4. Solve conflicts (if any)\n\n## 5. Finally push changes\n\n```bash\ngit push\n```\n","type":"tip","tags":["git","code","fork"],"publishedAt":"2020-04-12T12:44:00.915Z","image":null,"updatedAt":null,"readingTime":{"text":"1 min read","minutes":0.4,"time":24000,"words":80},"data":{"title":"How to Get Changes from Forked Project","description":"Learn how to get changes committed to a project you forked.","tags":["git","code","fork"],"publishedAt":"2020-04-12T12:44:00.915Z","updatedAt":null,"type":"tip"}}},"__N_SSG":true}