"Now that is like waiting for a bus in the snow"
With Bitbucket it compresses the folder into a zip folder and pushes it to an online repository. Allowing you to share a project with your team and check who changed what code in a project as the code is highlighted. The text marked in red is from the previous project and the text marked in green are from the new project you pushed to Bitbucket.
git status
git add .
git commit -m 'Your message here'
git push
And that's it! So simple, so convenient and so Geekster.
In the tutorial i have created a step by step YouTube tutorial to get you started with Bitbucket I will also leave some helpful commands that can help you navigate through your folders using the terminal and also leaving links for you to download Git and the terminal I use called Con Emu.
When you use any Terminal of your choice make sure you have selected Git Bash
cd This means change directory. For example cd /myproject/public
cd .. This means come out of the current folder you are in. For example myproject/public and now we can cd .. back to /myproject folder
mkdir -p Make a directory path create any path you like. For example mkdir -p /hello/public
rm -rf Remove files or folders Warning becarefull how you use the command lol this can change your life
cp Copy pathway cp /xampp/htdocs/oldhome /xampp/htdocs/newhome
Keep up to date with my videos and blog post and i'll share much more commands :)