Bring a local folder to remote git repo





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







0















I have a folder with all my files set up for a project.
I decided to use git on that folder, so I created on Github an empty repo.
Usually the procedure is to clone on my local disk the remote repo, and in this case it will create an empty folder. But, what I want to do is to fill the remote repo with my project folder without harming and without moving it.
Is there a procedure to do that?










share|improve this question





























    0















    I have a folder with all my files set up for a project.
    I decided to use git on that folder, so I created on Github an empty repo.
    Usually the procedure is to clone on my local disk the remote repo, and in this case it will create an empty folder. But, what I want to do is to fill the remote repo with my project folder without harming and without moving it.
    Is there a procedure to do that?










    share|improve this question

























      0












      0








      0








      I have a folder with all my files set up for a project.
      I decided to use git on that folder, so I created on Github an empty repo.
      Usually the procedure is to clone on my local disk the remote repo, and in this case it will create an empty folder. But, what I want to do is to fill the remote repo with my project folder without harming and without moving it.
      Is there a procedure to do that?










      share|improve this question














      I have a folder with all my files set up for a project.
      I decided to use git on that folder, so I created on Github an empty repo.
      Usually the procedure is to clone on my local disk the remote repo, and in this case it will create an empty folder. But, what I want to do is to fill the remote repo with my project folder without harming and without moving it.
      Is there a procedure to do that?







      git github






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 7 at 11:06









      user840718user840718

      21429




      21429






















          1 Answer
          1






          active

          oldest

          votes


















          2














          As hinted in GitHub help:




          1. Create a new repository on GitHub.

          2. Open Git Bash.

          3. Change the current working directory to your local project.


          4. Initialize the local directory as a Git repository.



            $ git init



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



            $ git add .



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



            $ git commit -m "First commit"


          7. At the top of your GitHub repository's Quick Setup page, click to copy the remote repository URL.



          8. In the Command prompt, add the URL for the remote repository where your local repository will be pushed.



            $ git remote add origin <remote repository URL>
            # Sets the new remote
            $ git remote -v
            # Verifies the new remote URL



          9. Push the changes in your local repository to GitHub.



            $ git push origin master







          share|improve this answer
























          • Thanks. I followed your procedure, but at step 9 I got this error: ! [rejected] master -> master (non-fast-forward) It says I have to use git pull first, I did, but I got the following: There is no tracking information for the current branch. Please specify which branch you want to merge with. Anyway, I'm scared that this "git pull" could overwrite my current dir. Am I missing something?

            – user840718
            Mar 7 at 11:21








          • 1





            It seems you have already some files on the remote repository. If you don't care about the remove one, then please read stackoverflow.com/questions/5509543/…, or you can pull your remote data to an empty local folder, copy to it what you want, then push

            – Ahmed Ashour
            Mar 7 at 11:25













          • It worked with the --force option. Thanks.

            – user840718
            Mar 7 at 11:36












          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "3"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1412078%2fbring-a-local-folder-to-remote-git-repo%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          2














          As hinted in GitHub help:




          1. Create a new repository on GitHub.

          2. Open Git Bash.

          3. Change the current working directory to your local project.


          4. Initialize the local directory as a Git repository.



            $ git init



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



            $ git add .



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



            $ git commit -m "First commit"


          7. At the top of your GitHub repository's Quick Setup page, click to copy the remote repository URL.



          8. In the Command prompt, add the URL for the remote repository where your local repository will be pushed.



            $ git remote add origin <remote repository URL>
            # Sets the new remote
            $ git remote -v
            # Verifies the new remote URL



          9. Push the changes in your local repository to GitHub.



            $ git push origin master







          share|improve this answer
























          • Thanks. I followed your procedure, but at step 9 I got this error: ! [rejected] master -> master (non-fast-forward) It says I have to use git pull first, I did, but I got the following: There is no tracking information for the current branch. Please specify which branch you want to merge with. Anyway, I'm scared that this "git pull" could overwrite my current dir. Am I missing something?

            – user840718
            Mar 7 at 11:21








          • 1





            It seems you have already some files on the remote repository. If you don't care about the remove one, then please read stackoverflow.com/questions/5509543/…, or you can pull your remote data to an empty local folder, copy to it what you want, then push

            – Ahmed Ashour
            Mar 7 at 11:25













          • It worked with the --force option. Thanks.

            – user840718
            Mar 7 at 11:36
















          2














          As hinted in GitHub help:




          1. Create a new repository on GitHub.

          2. Open Git Bash.

          3. Change the current working directory to your local project.


          4. Initialize the local directory as a Git repository.



            $ git init



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



            $ git add .



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



            $ git commit -m "First commit"


          7. At the top of your GitHub repository's Quick Setup page, click to copy the remote repository URL.



          8. In the Command prompt, add the URL for the remote repository where your local repository will be pushed.



            $ git remote add origin <remote repository URL>
            # Sets the new remote
            $ git remote -v
            # Verifies the new remote URL



          9. Push the changes in your local repository to GitHub.



            $ git push origin master







          share|improve this answer
























          • Thanks. I followed your procedure, but at step 9 I got this error: ! [rejected] master -> master (non-fast-forward) It says I have to use git pull first, I did, but I got the following: There is no tracking information for the current branch. Please specify which branch you want to merge with. Anyway, I'm scared that this "git pull" could overwrite my current dir. Am I missing something?

            – user840718
            Mar 7 at 11:21








          • 1





            It seems you have already some files on the remote repository. If you don't care about the remove one, then please read stackoverflow.com/questions/5509543/…, or you can pull your remote data to an empty local folder, copy to it what you want, then push

            – Ahmed Ashour
            Mar 7 at 11:25













          • It worked with the --force option. Thanks.

            – user840718
            Mar 7 at 11:36














          2












          2








          2







          As hinted in GitHub help:




          1. Create a new repository on GitHub.

          2. Open Git Bash.

          3. Change the current working directory to your local project.


          4. Initialize the local directory as a Git repository.



            $ git init



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



            $ git add .



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



            $ git commit -m "First commit"


          7. At the top of your GitHub repository's Quick Setup page, click to copy the remote repository URL.



          8. In the Command prompt, add the URL for the remote repository where your local repository will be pushed.



            $ git remote add origin <remote repository URL>
            # Sets the new remote
            $ git remote -v
            # Verifies the new remote URL



          9. Push the changes in your local repository to GitHub.



            $ git push origin master







          share|improve this answer













          As hinted in GitHub help:




          1. Create a new repository on GitHub.

          2. Open Git Bash.

          3. Change the current working directory to your local project.


          4. Initialize the local directory as a Git repository.



            $ git init



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



            $ git add .



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



            $ git commit -m "First commit"


          7. At the top of your GitHub repository's Quick Setup page, click to copy the remote repository URL.



          8. In the Command prompt, add the URL for the remote repository where your local repository will be pushed.



            $ git remote add origin <remote repository URL>
            # Sets the new remote
            $ git remote -v
            # Verifies the new remote URL



          9. Push the changes in your local repository to GitHub.



            $ git push origin master








          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 7 at 11:11









          Ahmed AshourAhmed Ashour

          1,3872716




          1,3872716













          • Thanks. I followed your procedure, but at step 9 I got this error: ! [rejected] master -> master (non-fast-forward) It says I have to use git pull first, I did, but I got the following: There is no tracking information for the current branch. Please specify which branch you want to merge with. Anyway, I'm scared that this "git pull" could overwrite my current dir. Am I missing something?

            – user840718
            Mar 7 at 11:21








          • 1





            It seems you have already some files on the remote repository. If you don't care about the remove one, then please read stackoverflow.com/questions/5509543/…, or you can pull your remote data to an empty local folder, copy to it what you want, then push

            – Ahmed Ashour
            Mar 7 at 11:25













          • It worked with the --force option. Thanks.

            – user840718
            Mar 7 at 11:36



















          • Thanks. I followed your procedure, but at step 9 I got this error: ! [rejected] master -> master (non-fast-forward) It says I have to use git pull first, I did, but I got the following: There is no tracking information for the current branch. Please specify which branch you want to merge with. Anyway, I'm scared that this "git pull" could overwrite my current dir. Am I missing something?

            – user840718
            Mar 7 at 11:21








          • 1





            It seems you have already some files on the remote repository. If you don't care about the remove one, then please read stackoverflow.com/questions/5509543/…, or you can pull your remote data to an empty local folder, copy to it what you want, then push

            – Ahmed Ashour
            Mar 7 at 11:25













          • It worked with the --force option. Thanks.

            – user840718
            Mar 7 at 11:36

















          Thanks. I followed your procedure, but at step 9 I got this error: ! [rejected] master -> master (non-fast-forward) It says I have to use git pull first, I did, but I got the following: There is no tracking information for the current branch. Please specify which branch you want to merge with. Anyway, I'm scared that this "git pull" could overwrite my current dir. Am I missing something?

          – user840718
          Mar 7 at 11:21







          Thanks. I followed your procedure, but at step 9 I got this error: ! [rejected] master -> master (non-fast-forward) It says I have to use git pull first, I did, but I got the following: There is no tracking information for the current branch. Please specify which branch you want to merge with. Anyway, I'm scared that this "git pull" could overwrite my current dir. Am I missing something?

          – user840718
          Mar 7 at 11:21






          1




          1





          It seems you have already some files on the remote repository. If you don't care about the remove one, then please read stackoverflow.com/questions/5509543/…, or you can pull your remote data to an empty local folder, copy to it what you want, then push

          – Ahmed Ashour
          Mar 7 at 11:25







          It seems you have already some files on the remote repository. If you don't care about the remove one, then please read stackoverflow.com/questions/5509543/…, or you can pull your remote data to an empty local folder, copy to it what you want, then push

          – Ahmed Ashour
          Mar 7 at 11:25















          It worked with the --force option. Thanks.

          – user840718
          Mar 7 at 11:36





          It worked with the --force option. Thanks.

          – user840718
          Mar 7 at 11:36


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Super User!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1412078%2fbring-a-local-folder-to-remote-git-repo%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Probability when a professor distributes a quiz and homework assignment to a class of n students.

          Aardman Animations

          Are they similar matrix