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

    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 inside project root appeared .git folder. I added some …

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

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

    2 Go to the directory where you code is, git init git add . git commit -m "Your message" Now add your address go to your git hub copy the clone address, git remote add origin <remote repository URL> …

  4. 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 don't have that …

  5. How do I push my local git repository to a branch in a remote github ...

    May 30, 2022 · To make a new clone of your GitHub fork, change to a new empty directory / folder on your laptop (or whatever computer you're using) and run: git clone <github-url> This does the git init / …

  6. 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 to upload my …

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

  8. How to push code to Github hiding the API keys? - Stack Overflow

    I want to push some codes to my GitHub Repository. These codes are in different languages like Javascript, Java, Python etc. Some of those codes contain some private API key that I don't want to …

  9. Is there a way to push changes with a GitHub action?

    I have written a GitHub action to build my code and create a production bundle. I'd like to have that included into my repository by committing the changes to origin/master. This seems like an obvious …

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