About 50 results
Open links in new tab
  1. When doing a 'git push', what does '--set-upstream' do?

    Aug 3, 2013 · What does git --set-upstream do? I tried to understand it by reading the git manual, but I didn't quite get it.

  2. git help in Windows command prompt - Stack Overflow

    Apr 18, 2014 · The git help command on Windows (msysgit distribution) spawns web browser each time I run it. I tried git help -m which reports "No manual entry for ..." and git help -i which …

  3. how do i get git to show command-line help in windows?

    Use git <command> -h instead of --help or help. It works in all recent versions of Git for Windows, but gives only the short usage, not the full description.

  4. 'credential-manager' is not a git command - Stack Overflow

    Jul 14, 2023 · Thanks - unfortunately that doesn't seem to work (note the command doesn't give any output): $ git config --global credential.helper manager-core $ git pull git: 'credential …

  5. Why is git help not working in my Git for Windows setup?

    Aug 22, 2022 · 2 When you run git help fetch, Git runs a help-assistant program. That's why you see this: $ git help fetch /usr/bin/start: line 8: : command not found In your case, the help …

  6. $ git review git: 'review' is not a git command. See 'git --help'

    Sep 29, 2016 · In similar fashion, review is not a valid command and thus git recommends you to lookout for help by running git --help What do you intend to do with review command?

  7. git - remote add origin vs remote set-url origin - Stack Overflow

    git remote add "origin" [email protected]:User/UserRepo.git below is used to change the url of an existing remote repository:

  8. git: 'lfs' is not a git command unclear - Stack Overflow

    Dec 5, 2024 · Every time I enter in my command window git lfs install the message I get is git: 'lfs' is not a git command. See 'git --help'. I tried looking up for a solution, but none of the answers …

  9. git: 'remote-https' is not a git command? - Stack Overflow

    However, I was able to resolve the problem by installing Git directly on the base system rather than relying on Conda's version. If you're facing a similar issue, consider installing Git on your …

  10. How can I switch to another branch in Git? - Stack Overflow

    Dec 4, 2017 · Switching to another branch in Git. Straightforward answer, git-checkout - Switch branches or restore working tree files git fetch origin # <---- This will fetch the branch git …