I am trying to configure Android Studio to work with my team repo on Bitbucket. What I would like to do in the first place is to push my local project onto my team\'s repo.
Without Using Any Plug-in
git add -A
This will add the files to git for committing.git commit -m "First Commit"
in the terminal. Here, First Commit is just a message i used for demonstration.git remote add origin https://example@bitbucket.org/example/test.git
Second one:
git push -u origin master
git add -A
git commit -m "Second Commit"
Push for the last time git push origin master
You can check that the branch is up-to-date by writting git status
On branch master Your branch is up-to-date with 'origin/master'. nothing to commit, working tree clean
2.3.3
& git version 2.13.0.windows.1