i have already one project in my local system but i don't know how to push it into bit bucket can you send the commands how can i push existing project into my bit bucket from the cmd
Step 1: Switch to your repository's directory
cd /path/to/your/repo
Step 2: Connect your existing repository to Bitbucket
if files exist in local add them using
git init
git add .
git commit -m"your message"
git remote add origin https://git-clone-url ====> [you can check origins by using "git remote -v"]
git push -u origin master ===> this branch can be whatever you are trying to push git push origin -u {branch name}
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.