Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save codeibrahima/c0c3a81ec34e61c5b472019500f8fcbb to your computer and use it in GitHub Desktop.
Save codeibrahima/c0c3a81ec34e61c5b472019500f8fcbb to your computer and use it in GitHub Desktop.

Revisions

  1. @alexpchin alexpchin created this gist Jun 1, 2014.
    39 changes: 39 additions & 0 deletions Add_Existing_Project_To_Git.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,39 @@
    #Adding an existing project to GitHub using the command line

    Simple steps to add existing project to Github.

    ## 1. Create a new repository on GitHub.
    In Terminal, change the current working directory to your local project.

    ##2. Initialize the local directory as a Git repository.

    git init

    Add the files in your new local repository. This stages them for the first commit.

    git add .

    or:

    git add --all

    Commit the files that you've staged in your local repository.

    git commit -m 'First commit'


    Copy remote repository URL field from your GitHub repository, in the right sidebar, copy the remote repository URL.

    In Terminal, add the URL for the remote repository where your local repostory will be pushed.

    git remote add origin <remote repository URL>

    Sets the new remote:

    git remote -v

    Push the changes in your local repository to GitHub.

    git push origin master

    Pushes the changes in your local repository up to the remote repository you specified as the origin