Answers for "commit new project folder to bitbucket"

0

commit new project folder to bitbucket

#Make sure to be in your project folder on your local machine and initialize your new repo
git init

#Add the existing files.
git add .

# Create your first commit.
git commit -m "First commit"

# Link it to the repo you created on GitHub/Bitbucket.
git remote add origin REPO_URL

#You can verify that it has been set correctly by doing the following.
git remote -v

#Finally push changes to repo
git push -u origin master
Posted by: Guest on February-18-2021

Code answers related to "commit new project folder to bitbucket"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language