How to view diff of a forked github project

后端 未结 4 1412
小鲜肉
小鲜肉 2020-12-13 03:56

I have forked a project on github and need to have a set of changes I made since I forked, in diff format.

If you wonder - I\'ve forked Apache httpd and I\'m changin

4条回答
  •  Happy的楠姐
    2020-12-13 04:49

    Online solution:

    get /repos/{owner}/{repo}/compare/{base}...{head}
    

    The "compare two commits" API does support multiple repositories:

    Both :base and :head must be branch names in :repo.
    To compare branches across other repositories in the same network as :repo, use the format :branch.

    Example:

    https://api.github.com/repos/octocat/hello-world/compare/master...abejpn:master

    Or with a GitHub URL:

    https://github.com/octocat/Hello-World/compare/master...abejpn:master


    Original answer 2010:

    • Add the original GitHub repo (the one you have forked) as a remote one on your local repo.
      (git remote add mainRepo github_url)
    • git fetch mainRepo to get the latest changes from that original "mainRepo".
    • git log HEAD..mainRepo/master will show you all your changes between the latest on mainRepo master branch and your current branch.
      git diff HEAD..mainRepo/master would display it in diff format.

    In learn.GitHub:

    git diff mainRepo/master...HEAD
    

    would list all your changes since you have forked from mainRepo:

    This will not compare the last ‘master’ branch snapshot and the last ‘dev’ snapshot - it will instead compare the common ancestor of both with ‘dev’. That will tell you what changed since the branch point.

提交回复
热议问题