Its really saved my time ,very neatly explained. thanks a lot sir
@algoconcept2 жыл бұрын
Very good video ! Thanks a lot
@netbat43992 жыл бұрын
how to commit with multiple file changed?
@amro33505 жыл бұрын
Thanks for the video. If I just remove the line and create a new commit (without squashing all the commits) and then push the branch (without the +), would that also update the pull request?
@srcmake5 жыл бұрын
Hi Amro. Yes, if you already have an existing PR and want to add a new commit, you can do the simple "git add" "git commit -m "message"" and "git push" commands. That's actually recommended for updating your branch/PR. You should only do the method in the video if you want to redo your previous commit (which is important for keeping commit histories clean on professional projects, but not so important for your own tiny projects).
@UK-sl8gu2 жыл бұрын
thank you .... that saved my time a lot :-)
@sau0022 жыл бұрын
Nice. Coming from Azure Devops background, I found this helpful in my new project. Can you also talk about Pull Request approval? And not letting merge happen unless there is an approval?
@sujitgupta50874 жыл бұрын
@srcmake Hey buddy very well explained..thanks for that.... and by the way your spoken english is pretty sharp. So I was curious to know whether you have read any books/material to improvise it
@imerfanahmed3 жыл бұрын
Thank you so much
@tomkiran13 жыл бұрын
Can we create a single repository for all project in bit bucket ? if possible could suggest how can we achieve it ?
@vaibhavjadiya66383 жыл бұрын
He is Silencerfrom 3 Idiots 😂
@assasylum12264 жыл бұрын
this is awesome.. thanks for the tutorial +1
@AndrewMarsin5 жыл бұрын
What about committing without command line? Bitbucket allows it.
@christerjohanzzon5 жыл бұрын
Because using commandline gives you full control, and by knowing how to do it the CLI-way you have better understanding of whats going on behinds the scenes. And you'll be better at handling issues/conflicts/problems when encountering them in a standard GUI.