About 235,000 results
Open links in new tab
  1. How to convert existing non-empty directory into a Git working ...

    Initialize Remote Repository Create a project on GitHub and copy the URL of your project. as shown below: Link Remote repo with Local repo Now use copied URL to link your local repo with the remote …

  2. git - Create a tag in a GitHub repository - Stack Overflow

    Aug 14, 2013 · This answer explains how to create a local tag using Sourcetree, but the question is all about how to push the tag to the remote repository (GitHub in this case).

  3. How to create a remote Git repository from a local one?

    Jul 11, 2011 · I have a local Git repository. I would like to make it available on a remote, ssh-enabled, server. How do I do this?

  4. Create a GitHub repository from command line - Stack Overflow

    So to save time, I created remote repo on github.com and add the remote repo url using git remote add origin https://mygithubrepoUrl.com and it worked. Is it necessary to create remote repo on Github …

  5. How do I create a new GitHub repo from a branch in an existing repo?

    Mar 2, 2012 · Create the new-repo in github. cd to your local copy of the old repo you want to extract from, which is set up to track the new-project branch that will become the new-repo 's master.

  6. How do I create a folder in a GitHub repository? - Stack Overflow

    Sep 4, 2012 · I want to create a folder in a GitHub repository and then add files to that folder. How do I achieve this?

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

    Here is complete steps I did to add my existing local project to GitHub using VSC (Note: Do not create a corresponding repository at GitHub): Install the GibHub extension to VSC.

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

    You can try this: on Server: adding new group to /etc/group like (example) mygroup:1001:michael,nir create new git repository: mkdir /srv/git cd /srv/git mkdir project_dir cd project_dir git --bare init (initial …

  9. how to create a new git repository from an existing one

    Mar 23, 2012 · Push a branch from your existing repository. For example let's say we want to push the branch topic1 from the existing repository and name it master in the new repository. $ cd …

  10. github - How to duplicate a git repository? (without forking) - Stack ...

    16 Update Nov 2021 You can easily copy files and folder of from another VC in github now. Steps: Create a new repository Click on the Import code button at the bottom Paste your repository's clone …