i am comfortable using Github to but i am trying to migrate to bitbucket since it supports private repositories by default.
My reason is because to make a repository private in Github, you have to pay some fee, but bitbucket.org provides it for free. I just created an empty repository named testproject, and i'm trying to push my files from my system to the repository online,
this is what i am trying to do ..
git clone https://ande_EAD@bitbucket.org/ande_proj/testproject.git
cd testproject
echo "# My project's README" >> README.md
git add README.md
git commit -m "Initial commit"
git push -u origin master
all my git-commands are giving this error ::
"fatal: Not a git repository (or any of the parent directories): .git"
please can someone assist me, whats the proper way of adding content to your repository on bitbucket. and note :: i prefer using command line than any software except otherwise.
if this works then i can successfully push other projects online, and invite the teams to join me.