About 727,000 results
Open links in new tab
  1. git - Push existing project into Github - Stack Overflow

    I have a folder with my project sources. How I can push this project into Github's repository? I tried using this steps: I created empty repository on GitHub. I run git-bash and typed git init, so

  2. How to upload a project to GitHub - Stack Overflow

    Oct 9, 2012 · 308 After checking How can I upload my project's Git repository to GitHub?, I still have no idea how to get a project uploaded to my GitHub repository. I created a repository and …

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

    I like to run git push --set-upstream origin master instead of git push origin master the first time. This allows me to just type git push or git pull instead of git push origin master every time. …

  4. 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

  5. How to add a new project to Github using VS Code

    I had to use --force in the push command because I selected a LICENSE on GitHub while creating the new repo and my local Git refused to merge the changes.

  6. Uploading a project to GitHub using the command line

    Jan 28, 2018 · How do I upload a project to GitHub through the command line? I have installed Git on Windows. I am uploading my project by creating a new repository, but it did not upload by …

  7. How to add an Android Studio project to GitHub [duplicate]

    I have a project in Android Studio. I want to add that project to a GitHub repository using android studio. How can I do that?

  8. How do I push to GitHub under a different username?

    A friend and myself are sharing my computer. I've made pushes to GitHub using the git bash shell on Windows 7. Now we're in a different project on that computer and I need her to push to her …

  9. How do I push local folder into new Github repository?

    Apr 23, 2021 · I used to push: git push origin main The issue is when I am trying to push my new local folder (which is my portfolio) , the previous repository that I was working on github being …

  10. How to publish a project to an existing Github Repo using VS Code

    Aug 27, 2020 · 7 I have a local project on VS code and a private Repository with the same name on Github. Now, when I follow these steps It says, Github repository alreadt exists as shown in …