About 64,800 results
Open links in new tab
  1. How to connect to a remote Git repository? - Stack Overflow

    Nov 30, 2013 · We have a remote machine that works like an SVN repository. Now, we want to turn this machine into the Git central repository. By what I have read, what everyone needs to do on their …

  2. git - Connect a local repository with a remote repository - Stack Overflow

    Mar 7, 2022 · I have a local repository. I created the whole application, but now I want to push it to a remote repository. I already have remote repo as well. How can I connect these two repositories …

  3. version control - How to connect local folder to Git repository and ...

    Mar 21, 2016 · To register a project as a local Git repository the first thing you need to do is perform the following command at your project root: git init This will create a .git folder at your project root and will …

  4. How to fix "ssh: connect to host github.com port 22: Connection timed ...

    If your ssh -T [email protected] connects and does not time out but you're still getting the error when trying to git commit: ssh: connect to host sign port 22: Operation timed out?

  5. How to sync with a remote Git repository? - Stack Overflow

    I forked a project on github, made some changes, so far so good. In the meantime, the repository I forked from changed and I would like to get those changes into my repository. How do I do that ?

  6. Visual Studio Code - Connect to a remote Git repository and PUSH …

    Apr 12, 2017 · I have created a local project with Visual Studio Code that implements a local Git repository. Then I have create a Git repository on Visual Studio Online and I want to push all my …

  7. github - Git: Connect existing local repository to existing remote ...

    Jun 4, 2020 · Git: Connect existing local repository to existing remote repository Asked 5 years, 6 months ago Modified 2 years, 10 months ago Viewed 37k times

  8. git - How to add my current project to an already existing GitHub ...

    Open your Terminal, access to this folder and write: git init git add . git commit -m "my commit" git remote set-url origin [email protected]:username/repo.git git push origin main

  9. git with IntelliJ IDEA: Could not read from remote repository

    Dec 19, 2014 · and the repository exists. Using the built-in terminal of IntelliJ, executing git -c core.quotepath=false fetch origin --progress --prune, it works just as it should. According to the …

  10. How do I do an initial push to a remote repository with Git?

    I ran that command, but a "git push origin master" still results in a "failed to push some refs". I tried doing a "git pull origin master" and received a "couldn't find remote ref master".