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;
}
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
add a comment |
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
add a comment |
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
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
git github
asked Mar 7 at 11:06
user840718user840718
21429
21429
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
As hinted in GitHub help:
- Create a new repository on GitHub.
- Open Git Bash.
- Change the current working directory to your local project.
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 .
Commit the files that you've staged in your local repository.
$ git commit -m "First commit"
At the top of your GitHub repository's Quick Setup page, click to copy the remote repository URL.
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
Push the changes in your local repository to GitHub.
$ git push origin master
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
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
As hinted in GitHub help:
- Create a new repository on GitHub.
- Open Git Bash.
- Change the current working directory to your local project.
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 .
Commit the files that you've staged in your local repository.
$ git commit -m "First commit"
At the top of your GitHub repository's Quick Setup page, click to copy the remote repository URL.
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
Push the changes in your local repository to GitHub.
$ git push origin master
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
add a comment |
As hinted in GitHub help:
- Create a new repository on GitHub.
- Open Git Bash.
- Change the current working directory to your local project.
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 .
Commit the files that you've staged in your local repository.
$ git commit -m "First commit"
At the top of your GitHub repository's Quick Setup page, click to copy the remote repository URL.
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
Push the changes in your local repository to GitHub.
$ git push origin master
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
add a comment |
As hinted in GitHub help:
- Create a new repository on GitHub.
- Open Git Bash.
- Change the current working directory to your local project.
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 .
Commit the files that you've staged in your local repository.
$ git commit -m "First commit"
At the top of your GitHub repository's Quick Setup page, click to copy the remote repository URL.
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
Push the changes in your local repository to GitHub.
$ git push origin master
As hinted in GitHub help:
- Create a new repository on GitHub.
- Open Git Bash.
- Change the current working directory to your local project.
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 .
Commit the files that you've staged in your local repository.
$ git commit -m "First commit"
At the top of your GitHub repository's Quick Setup page, click to copy the remote repository URL.
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
Push the changes in your local repository to GitHub.
$ git push origin master
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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