Make A Change Under The New Protocol

  • Edit the README file in your bb101repo-practice repository.
  • Add a new line to the file, for example:
    Welcome to My First Repo
    -------------------------------
    This repo is a practice repo I am using to learn bitbucket.
    You can access this repo with SSH or with HTTPS.
            
    
  • Save and close the file.
  • Add and then commit your change to your local repo.
    git add README
    git commit -m "making a change under the SSH protocol"
            
    
  • Push your changes.
    The system warns you that it is adding the Bitbucket host to the list of known hosts.
    manthony@MANTHONY-PC ~
    $ git push 
    $ git push
    Counting objects: 5, done.
    Delta compression using up to 2 threads.
    Compressing objects: 100% (2/2), done.
    Writing objects: 100% (3/3), 287 bytes, done.
    Total 3 (delta 1), reused 0 (delta 0)
    remote: bb/acl: newuserme is allowed. accepted payload.
    To git@bitbucket.org:newuserme/bb101repo.git
      056c29c..205e9a8 master -> master
            
    
  • Open the repo Overview in Bitbucket to view your commit.