Git add a directory to remote repository by origin URL

Following the following steps one can add a folder to existing Github repository. These steps can be and should be followed to add a directory to any git repository, whether it is on Github or Bitbucket or any other server.I have used the name master of the default branch I am adding my code to.  You can change the default branch name to any other name of your choice.

Here are the steps:

  1. Plain text
    Copy to clipboard
    Open code in new window
    EnlighterJS 3 Syntax Highlighter
    cd /directory/to/add
    cd /directory/to/add
    cd /directory/to/add
  2. Plain text
    Copy to clipboard
    Open code in new window
    EnlighterJS 3 Syntax Highlighter
    git init
    git init
    git init
  3. Plain text
    Copy to clipboard
    Open code in new window
    EnlighterJS 3 Syntax Highlighter
    git add .
    git add .
    git add .
  4. Plain text
    Copy to clipboard
    Open code in new window
    EnlighterJS 3 Syntax Highlighter
    git commit -m "first commit"
    git commit -m "first commit"
    git commit -m "first commit"
  5. Plain text
    Copy to clipboard
    Open code in new window
    EnlighterJS 3 Syntax Highlighter
    git branch -M master
    git branch -M master
    git branch -M master
  6. Plain text
    Copy to clipboard
    Open code in new window
    EnlighterJS 3 Syntax Highlighter
    git remote add origin https://github.com/url_to_git_repository/repo_name.git
    git remote add origin https://github.com/url_to_git_repository/repo_name.git
    git remote add origin https://github.com/url_to_git_repository/repo_name.git
  7. Plain text
    Copy to clipboard
    Open code in new window
    EnlighterJS 3 Syntax Highlighter
    git push -u origin master
    git push -u origin master
    git push -u origin master

     

Leave a Reply