Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <<Install Git>>
- sudo apt-get install git
- git config --global user.name "FIRST_NAME LAST_NAME"
- <<Clone your new repo>>
- mkdir /path/to/your/project
- cd /path/to/your/project
- git init
- git remote add origin https://aquaballoon@bitbucket.org/aquaballoon/test.git
- <<Make changes and push>>
- echo "# This is my README" >> README.md
- git add README.md
- git commit -m "First commit. Adding a README."
- git push -u origin master
- git add . # add all files and directory
- git commit -m "Adding source"
- git push -u origin master
Advertisement
Add Comment
Please, Sign In to add comment