About 202,000 results
Open links in new tab
  1. How to upload a project to GitHub - Stack Overflow

    Oct 9, 2012 · 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 want …

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

    This was the exact answer I was looking for. Specifically adding a new project to github without leaving the Visual Studio Code interface.

  3. 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 …

  4. How Do I Upload Eclipse Projects to GitHub? - Stack Overflow

    91 I have code in Eclipse that I'd like to upload to GitHub but so far I can't figure out how. It says "create a repository" but that looks more like a folder that holds your projects and I'm not sure …

  5. git - upload files to a branch in github - Stack Overflow

    What I want to do is upload folders to my organization's github repository. There already exists a repo, and I want to create a branch and upload my files and folders in that branch. I tried doing …

  6. git - Import existing source code to GitHub - Stack Overflow

    Apr 9, 2016 · How can I import source code from my computer to my GitHub account?

  7. How to push a new code to an existing git repository in github

    15 I need to push my modified new java code to my old git repository in github but I do not have old code in my pc. How to do that? I had push a code before my github account before. Now I …

  8. How can I upload committed changes to my GitHub repository?

    Apr 8, 2017 · 14 I used clone to create a local copy of my repository on GitHub. I modified a few files. Then I did: git commit -a And now I want to save my committed changes to the GitHub …

  9. GitHub Copilot and Privacy - Stack Overflow

    Apr 21, 2023 · Code Snippets Data Depending on your preferred telemetry settings, GitHub Copilot may also collect and retain the following, collectively referred to as “code snippets”: …

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