I am using bitbucket with source tree I have pushed one of my project in a bucket and using source tree I make changes on it from my local machine but is it possible that the changes I push to bucket automatically get pushed on my server where I am hosing my project? if yes then how can I do that >
HI @[deleted]
Welcome to the Community!
automatically get pushed on my server where I am hosing my project?
Is this project is nothing but repository on bitbucket server?
if so then you can but you need to first check out the respective branch and then you need to push the changes to the remote.
1. add the changes
$ git add .
2. commit the changes
$ git commit -m <commit message>
3. push the change to the remote branch
$ git push
hello yogesh mude thankyou for your response
and it's a website code I want it to be pushed to the server where I an hosting it is it possible through the way you suggested?
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.