Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I add Git version control (Bitbucket) to an existing source code folder?

Tags:

git

bitbucket

How can I add the contents of an existing folder to Git version control?

The tutorial here covers the case of making a directory and then adding source contents to it. I have some source code in a folder that is path dependent and don't want to move it.

So, how can I just go into my folder and make it a repository?

like image 437
user1406716 Avatar asked Jul 10 '13 11:07

user1406716


People also ask

How do I add a remote to an existing repository?

Adding a remote repository To add a new remote, use the git remote add command on the terminal, in the directory your repository is stored at. The git remote add command takes two arguments: A remote name, for example, origin.


1 Answers

Final working solution using @Arrigo response and @Samitha Chathuranga comment, I'll put all together to build a full response for this question:

  1. Suppose you have your project folder on PC;
  2. Create a new repository on bitbucket: enter image description here

  3. Press on I have an existing project: enter image description here

  4. Open Git CMD console and type command 1 from second picture(go to your project folder on your PC)

  5. Type command git init

  6. Type command git add --all

  7. Type command 2 from second picture (git remote add origin YOUR_LINK_TO_REPO)

  8. Type command git commit -m "my first commit"

  9. Type command git push -u origin master

Note: if you get error unable to detect email or name, just type following commands after 5th step:

 git config --global user.email "yourEmail"  #your email at Bitbucket  git config --global user.name "yourName"  #your name at Bitbucket 
like image 65
Choletski Avatar answered Sep 26 '22 15:09

Choletski