All,
Have followed below process to add files from local machine to bitbucket repository but am not getting success.
git clone <repo>
- created some files in local machine where i cloned the bitbucket repo
git add --all
git commit -m "Full Commit"
git status
-> here nothing is showing as new
When i go to bitbucket online repository am not able to see the files which i have created newly in local machine.
Please suggest what i am missing here exactly to get success
Regards
Prabhakar
Hi @prabhakartalari ,
The missing piece is pushing the code after a commit.
For example: git push <remote> <branch>
git push origin dev
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.