About 537,000 results
Open links in new tab
  1. git - How do I pull my project from github? - Stack Overflow

    Sep 11, 2009 · 153 I have a project on github that I have been working on before. However, I wiped out my computer and I am wondering which git command should I invoke under my …

  2. git - How to modify GitHub pull request? - Stack Overflow

    I've opened a pull request to a project. The maintainer has decided to accept it, but told me to modify some contents. How can I do it? Whether I should keep the commit hash unchanged, …

  3. github - Git pull till a particular commit - Stack Overflow

    Jul 17, 2015 · 36 You can also pull the latest commit and just undo until the commit you desire: git pull origin master git reset --hard HEAD~1 Replace master with your desired branch. Use git …

  4. how to use Personal access token to clone, pull, and push a repo?

    Jun 30, 2021 · Today GitHub surprise me with a new way to push, clone, or pull a repo when I'm trying to push my project I get this error message: remote: Password authentication is ...

  5. Updating a local repository with changes from a GitHub repository

    Apr 9, 2019 · I've got a project checked locally from GitHub, and that remote repository has since had changes made to it. What's the correct command to update my local copy with the latest …

  6. git - pulling from specific branch - Stack Overflow

    Feb 17, 2015 · I have cloned a git repository to my dev server and then switched to the dev branch but now I can't do a git pull to update the branch. How do I update the code on the …

  7. How can I check out a GitHub pull request with git?

    Dec 19, 2014 · I'd like to check out a previously created pull request (created via GitHub web interface). I searched and found different places where a refs/pull or refs/pull/pr But when I add …

  8. Setting up Git on EC2 to pull from GitHub repo - Stack Overflow

    Now, my code is on a private repo on GitHub, and I would like to perform simple deployments by doing git pull or something like that. Git is also installed on the server already. I know I could …

  9. How do I get the latest version of my code? - Stack Overflow

    4 To answer your questions there are simply two steps:- Pull the latest changes from your git repo using git pull Clean your local working directory having unstaged changes using git checkout -- …

  10. GitHub CLI how to do a simple pull? - Stack Overflow

    Aug 6, 2022 · The GitHub CLI is a command-line tool to do the work as in GitHub itself like pull requests, issues, GitHub Actions, and other GitHub features. The same as on GitHub-website, …