About 50 results
Open links in new tab
  1. github - What is exactly meaning of commit command in git - Stack …

    May 15, 2017 · What is exactly meaning of commit command in git Asked 8 years, 9 months ago Modified 3 years, 3 months ago Viewed 46k times

  2. What does it mean to fork on GitHub? - Stack Overflow

    After few explorations, In my understanding, it is related to contribution. Fork means to make a copy of the repository (the one being forked) into my own github account. If I want to fork the off...

  3. What is the meaning of the 'estimate' field in GitHub Projects?

    May 23, 2024 · GitHub's various views shows the sum of the estimates, which is easier for a pure integer type. Since it is notoriously hard to estimate time to complete software projects, the idea is to …

  4. What does cherry-picking a commit with Git mean?

    Cherry-picking in Git means choosing a commit from one branch and applying it to another. This contrasts with other ways such as merge and rebase which normally apply many commits to another …

  5. What is the difference between merge --squash and rebase?

    Apr 21, 2016 · For the record, no, rebase and squash are completely different operations. Also, the title of the question and its body ask different things. I can't imagine how this question is still as broken …

  6. git - Pull request vs Merge request - Stack Overflow

    Aug 14, 2020 · GitLab's "merge request" feature is equivalent to GitHub's "pull request" feature. Both are means of pulling changes from another branch or fork into your branch and merging the changes …

  7. difference between fork and branch on github - Stack Overflow

    Mar 23, 2016 · Fork is a clone on the GitHub side (it clones everything). When you are cloning a repo, you are getting the all history of said repo, with all its branches. Even though you can in theory …

  8. On GitHub, what's the difference between reviewer and assignee?

    In GitHub a reviewer is a person who reviews the pull request. A project owner can request review from any of the maintainers, They can even set an option so that the pull request can be merged only if it …

  9. Meaning of the GitHub message: push declined due to email privacy ...

    I have accepted and merged a pull request on GitHub, and now I cannot pull my commits any more. The message is: ! [remote rejected] master -> master (push declined due to email privacy restricti...

  10. What are the differences between "git commit" and "git push"?

    Apr 30, 2010 · In a Git tutorial I'm going through, git commit is used to store the changes you've made. What is git push used for then?